@extends('admin.layouts.app') @section('page-title', 'Shipping Report List') @section('content')
Container-wise invoices overview (Order & Shipment removed)
| Container No | Container Date | Company Name | Customer Name | Mark No | Invoice No | Invoice Date | Invoice Amount | Invoice Status |
|---|---|---|---|---|---|---|---|---|
| {{ $r->container_number }} | {{ $r->container_date ? \Carbon\Carbon::parse($r->container_date)->format('d-m-Y') : '-' }} | {{ $r->company_name ?? '-' }} | {{ $r->customer_name ?? '-' }} | {{ $r->mark_no ?? '-' }} | {{ $r->invoice_number }} | {{ $r->invoice_date ? \Carbon\Carbon::parse($r->invoice_date)->format('d-m-Y') : '-' }} | {{ number_format($r->final_amount, 2) }} | @php $ist = strtolower($r->invoicestatus ?? ''); @endphp {{ $ist ? ucfirst($ist) : '-' }} |
No Shipping Reports FoundThere are no shipping reports matching your current filters |
||||||||