@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 @if($ist === 'paid') @elseif($ist === 'pending') @elseif($ist === 'overdue') @endif {{ ucfirst($ist) }} | @if($r->shipment_status === 'pending') @elseif($r->shipment_status === 'in_transit') @elseif($r->shipment_status === 'dispatched') @elseif($r->shipment_status === 'delivered') @endif {{ ucfirst(str_replace('_',' ', $r->shipment_status)) }} |
No Shipping Reports FoundThere are no shipping reports matching your current filters |
|||||||||||