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

Shipping Report List

Container-wise invoices overview (Order & Shipment removed)

{{ count($reports) }}
Total Invoices
0
Paid Invoices
0
Pending Invoices
0
Overdue Invoices
@forelse ($reports as $r) @empty @endforelse
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 Found

There are no shipping reports matching your current filters

Showing 1 to {{ min(10, count($reports)) }} of {{ count($reports) }} entries
{{-- ======================= OLD ORDER + SHIPMENT TABLE (FULLY COMMENTED) ======================= इथे तुझा जुना / JS ठेवू शकतोस backup साठी. --}} @endsection