@extends('emails.partials.base_template')
@section('title', 'Booking Status Update')
@section('subtitle', 'Your booking status has been updated')
@section('content')
Hello {{ $booking->customer_name }},
We wanted to inform you that your booking status has been updated. Here are the current details:
Status Update: Your booking has been moved to {{ ucfirst(str_replace('_', ' ', $newStatus)) }}
Booking Information
Booking ID:
#{{ $booking->id }}
Current Status:
{{ ucfirst(str_replace('_', ' ', $newStatus)) }}
Previous Status:
{{ ucfirst(str_replace('_', ' ', $oldStatus)) }}
Updated On:
{{ now()->format('M d, Y H:i') }}
Vehicle & Route Details
Vehicle Type:
{{ $booking->vehicle_type }}
Pickup Location:
{{ $booking->pickup_location }}
Delivery Location:
{{ $booking->delivery_location }}
@if($booking->pickup_date)
Pickup Date:
{{ $booking->pickup_date }}
@endif
@if($booking->pickup_time)
Pickup Time:
{{ $booking->pickup_time }}
@endif
@if($newStatus === 'confirmed')
Great News! Your booking has been confirmed. We're preparing your vehicle for transport.
@elseif($newStatus === 'in_progress')
Transport in Progress: Your vehicle is now being prepared for pickup.
@elseif($newStatus === 'picked_up')
Vehicle Picked Up: Your vehicle has been successfully picked up and is now in transit.
@elseif($newStatus === 'in_transit')
In Transit: Your vehicle is currently being transported to the delivery location.
@elseif($newStatus === 'delivered')
Delivered! Your vehicle has been successfully delivered to the destination.
@elseif($newStatus === 'completed')
Transport Completed: Your vehicle transport has been completed successfully. Thank you for choosing our services!
@elseif($newStatus === 'cancelled')
Booking Cancelled: Your booking has been cancelled. If you have any questions, please contact our support team.
@endif
@if($notes)
Additional Notes
{{ $notes }}
@endif
Need Help?
If you have any questions about your booking or need assistance, please don't hesitate to contact our support team.
Track Your Booking:
View Booking Details
Thank you for choosing our transport services!
@endsection
@push('styles')
@endpush