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