Dashboard
Welcome back! Here's your logistics overview
{{ $totalQuotes }}
{{ $completedQuotes }}
{{ $pendingQuotes }}
{{ $rejectedQuotes }}
Booking Request Overview
TQL Carrier Usage
Track Booking Status
Recent Booking Requests
You haven't made any booking requests yet.
Start by creating a quote and requesting a booking.
| Booking ID | Origin to Destination | Carrier | Amount | Status | Requested |
|---|---|---|---|---|---|
| #{{ $booking->id }} | {{ $quote->pickupDetail->city ?? 'N/A' }}, {{ $quote->pickupDetail->state ?? '' }} to {{ $quote->deliveryDetail->city ?? 'N/A' }}, {{ $quote->deliveryDetail->state ?? '' }} | {{ $carrier }} @if (stripos($carrier, 'TQL') !== false) TQL @endif | ${{ $amount }} | @php $statusColors = [ 'pending' => 'warning', 'approved' => 'info', 'confirmed' => 'success', 'rejected' => 'danger', ]; @endphp {{ ucfirst($status) }} | {{ $booking->created_at->format('M d, Y') }} |