@extends('admin.layouts.app') @section('page-title', 'Shipping Report List') @section('content')
Shipping Report List
Overview of last month
@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 report data available.
@endsection