@component('mail::message') # Booking Request Sent Successfully Hello {{ $bookingRequest->client->name }}, Your booking request has been sent to {{ $bookingRequest->golferProfile->user->name }}! @component('mail::panel') **Booking Request Details** **Golfer**: {{ $bookingRequest->golferProfile->user->name }} **Date**: {{ $bookingRequest->formatted_proposed_date }} **Time**: {{ $bookingRequest->formatted_proposed_time }} **Duration**: {{ $bookingRequest->duration_minutes }} minutes **Location**: {{ $bookingRequest->preferred_location }} **Total Price**: ${{ number_format($bookingRequest->total_price, 2) }} @endcomponent @if($bookingRequest->special_requests) ## Your Special Requests {{ $bookingRequest->special_requests }} @endif ## What Happens Next? The golfer will review your request and respond within **48 hours**. You'll receive an email notification when they: - **Accept** your booking request - **Decline** your booking request - **Send you a message** with questions or alternative suggestions @component('mail::button', ['url' => route('client.booking-requests.show', $bookingRequest->id)]) View Your Request @endcomponent ## While You Wait - **Stay Available**: Keep your notifications on to respond quickly - **Check Messages**: The golfer may reach out with questions - **Have Backup Options**: Consider sending requests to other golfers as well @component('mail::panel') **Need to Make Changes?** You can cancel this request at any time before the golfer accepts it. Just visit your booking requests page and select "Cancel Request". @endcomponent Thanks,
The {{ config('app.name') }} Team @component('mail::subcopy') Track the status of this request at {{ route('client.booking-requests.show', $bookingRequest->id) }} @endcomponent @endcomponent