@extends('admin.layouts.app') @section('page-title', 'Shipment Management') @section('content')
| # | Shipment ID | Origin | Destination | Total QTY | Total KG | Total CBM | Total Amount | Status | Date | Action |
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->iteration }} | {{ $ship->shipment_id }} | {{ $ship->origin }} | {{ $ship->destination }} | {{ $ship->total_qty }} | {{ $ship->total_kg }} kg | {{ $ship->total_cbm }} CBM | ₹{{ number_format($ship->total_amount, 2) }} | {{ ucfirst(str_replace('_', ' ', $ship->status)) }} | {{ \Carbon\Carbon::parse($ship->shipment_date)->format('d M Y') }} |
|
| No shipments found | ||||||||||