@if($newStatus === 'confirmed') 🎉 Booking Confirmed! @elseif($newStatus === 'cancelled') ❌ Booking Cancelled @elseif($newStatus === 'active') ✅ Booking Active @elseif($newStatus === 'completed') ✓ Booking Completed @else Status Update @endif

{{ $booking->booking_code }}

Dear {{ $booking->user->fullname }},

@if($newStatus === 'confirmed')

Great news! Your warehouse booking has been confirmed. Your space is now reserved and ready for use.

Booking Details

Warehouse: {{ $booking->warehouse->name }}
Location: {{ $booking->warehouse->city }}, {{ $booking->warehouse->state }}
Period: {{ $booking->start_date->format('M d, Y') }} - {{ $booking->end_date->format('M d, Y') }}
Space: {{ number_format($booking->calculated_sqft) }} sq. ft
Total Amount: ${{ number_format($booking->final_price, 2) }}

Next Steps:

@elseif($newStatus === 'cancelled')

We regret to inform you that your warehouse booking has been cancelled.

@if($adminNote || $booking->notes)
Reason:
{{ $adminNote ?? $booking->notes }}
@endif

Cancelled Booking Details

Warehouse: {{ $booking->warehouse->name }}
Period: {{ $booking->start_date->format('M d, Y') }} - {{ $booking->end_date->format('M d, Y') }}
Space: {{ number_format($booking->calculated_sqft) }} sq. ft

If you have any questions or would like to make a new booking, please contact us.

@elseif($newStatus === 'active')

Your warehouse booking is now active. You can start using your reserved space.

Active Booking

Warehouse: {{ $booking->warehouse->name }}
Space: {{ number_format($booking->calculated_sqft) }} sq. ft
Valid Until: {{ $booking->end_date->format('M d, Y') }}
@elseif($newStatus === 'completed')

Your warehouse booking has been marked as completed. Thank you for choosing our services!

We hope you had a great experience. Please feel free to leave us feedback or make a new booking anytime.

@endif
View Booking Details
@if($adminNote && $newStatus !== 'cancelled')
Admin Note:
{{ $adminNote }}
@endif

If you have any questions, please feel free to contact us.

Best regards,
ArkAnu Freight Team