@extends('admin.layouts.app') @section('page-title', 'Shipping Report List') @section('content')
Comprehensive overview of all shipping activities and invoices
| 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 FoundThere are no shipping reports matching your current filters |
|||||||||||