Orders Report

@foreach($orders as $order) @php $mark = $order->markList ?? null; $invoice = $order->invoice ?? null; $shipment = $order->shipments->first() ?? null; @endphp @endforeach
Order ID Company Invoice No Invoice Status Shipment Status
{{ $order->order_id ?? '-' }} {{ $mark->company_name ?? '-' }} {{ $invoice->invoice_number ?? '-' }} {{ $invoice->status ?? '-' }} {{ $shipment->status ?? '-' }}