@extends('layouts.app') @section('title', 'Daily Shipments Report') @section('page-title', 'Daily Shipments Report') @section('content')
Total Bookings
{{ $stats['total_bookings'] }}
Total Revenue
{{ number_format($stats['total_amount'], 2) }}
Total Weight
{{ number_format($stats['total_weight'], 2) }} kg
Total Packages
{{ $stats['total_cartons'] }}

Shipments for {{ \Carbon\Carbon::parse($date)->format('d M, Y') }}

@forelse($bookings as $booking) @empty @endforelse
CNTR No Sender Receiver Items Weight Amount Status
{{ $booking->cntr_no }} {{ $booking->customer->name ?? 'N/A' }} {{ $booking->receiver_name }} {{ $booking->carton_count }} {{ $booking->weight_kg }} kg {{ number_format($booking->total_amount, 2) }} {{ $booking->status }}
No shipments found for this date.
@endsection