Date: {{ \Carbon\Carbon::now()->format('Y-m-d') }}
| Invoice No | Customer | Status | Amount | Created Date |
|---|---|---|---|---|
| {{ $shipment->invoice_no }} | {{ $shipment->contact->name }} | {{ ucfirst($shipment->shipping_status) }} | {{ number_format($shipment->final_total, 2) }} | {{ $shipment->created_at->format('Y-m-d') }} |
Total Pending Shipments: {{ $pendingShipments->count() }}
@elseNo pending shipments found.
@endif