Booking Status Update

Hello {{ $booking->user->fullname }}!

@if($status === 'approved')

Your booking request has been approved and is being processed.

We are preparing your shipment and will notify you once it's confirmed with the carrier.

@elseif($status === 'confirmed')

Your booking has been confirmed with the carrier!

Your shipment is now scheduled and in transit.

@elseif($status === 'rejected')

Your booking request has been rejected.

@if($adminNote)
Reason for rejection:

{{ $adminNote }}

@endif @else

Your booking request status has been updated to: {{ ucfirst($status) }}

@endif

Booking Details

Booking ID: #{{ $booking->id }}
Quote ID: #{{ $booking->quote_id }}
Total Amount: ${{ number_format($booking->total_amount, 2) }}
Status: {{ ucfirst($status) }}
Updated: {{ $booking->updated_at->format('F d, Y \\a\\t h:i A') }}
@if($adminNote && $status !== 'rejected')
Admin Note:

{{ $adminNote }}

@endif
View My Bookings

If you have any questions about your booking, please contact our support team.