@extends('admin.layouts.app') @section('page-title', 'Shipping Report List') @section('content')

Shipping Report List

Comprehensive overview of all shipping activities and invoices

{{ count($reports) }}
Total Shipments
0
Pending Shipments
0
In Transit
0
Dispatched
0
Delivered
0
Overdue Invoices
@forelse ($reports as $r) @empty @endforelse
Order ID Shipment ID Company Name User Name Origin Destination Date Invoice ID Invoice Date Invoice Amount Invoice Status Shipment Status
{{ $r->order_id }} {{ $r->shipment_id }} {{ $r->company_name ?? '-' }} {{ $r->customer_name ?? '-' }} {{ $r->origin }} {{ $r->destination }} {{ \Carbon\Carbon::parse($r->shipment_date)->format('d/m/Y') }} {{ $r->invoice_number }} {{ \Carbon\Carbon::parse($r->invoice_date)->format('d/m/Y') }} {{ number_format($r->final_amount) }} @php $ist = strtolower($r->invoice_status); @endphp {{ ucfirst($ist) }} {{ ucfirst(str_replace('_',' ', $r->shipment_status)) }}

No Shipping Reports Found

There are no shipping reports matching your current filters

@endsection