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:
@endif
@else
{{ $adminNote }}
Your booking request status has been updated to: {{ ucfirst($status) }}
@endifBooking 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') }} |
Admin Note:
@endif
{{ $adminNote }}
If you have any questions about your booking, please contact our support team.