Daily Pending Shipment Report

Date: {{ \Carbon\Carbon::now()->format('Y-m-d') }}

@if($pendingShipments->count() > 0) @foreach($pendingShipments as $shipment) @endforeach
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() }}

@else

No pending shipments found.

@endif