@extends('layouts.admin') @section('title','Parcel operations') @section('heading','Parcel operations') @section('content')

Monitor courier bookings, payments and driver allocation.

Dispatch jobs
Reset
@forelse($parcels as $parcel)@empty@endforelse
ParcelCustomerPackageRouteTotalStatusBooked
{{ $parcel->number }}{{ $parcel->customer?->name }}
{{ $parcel->customer?->phone }}
{{ $parcel->packageType?->name }}
{{ $parcel->weight_kg }} kg
{{ number_format($parcel->distance_km,2) }} kmINR {{ number_format($parcel->total,2) }}
{{ ucfirst($parcel->payment_status) }}
{{ $parcel->status }}{{ $parcel->created_at->format('d M Y H:i') }}
No parcels match these filters.
{{ $parcels->links() }} @endsection