@component('mail::message') # New Booking Request Received Hello {{ $bookingRequest->golferProfile->user->name }}, You have received a new booking request from {{ $bookingRequest->client->name }}! @component('mail::panel') **Booking Details** **Client**: {{ $bookingRequest->client->name }} **Date**: {{ \App\Helpers\TimezoneHelper::formatDate($bookingRequest->proposed_date, 'F j, Y', $bookingRequest->golfer->timezone) }} **Time**: {{ \App\Helpers\TimezoneHelper::formatTime(\Carbon\Carbon::parse($bookingRequest->proposed_date->format('Y-m-d') . ' ' . $bookingRequest->proposed_time), 'g:i A', $bookingRequest->golfer->timezone) }} **Duration**: {{ $bookingRequest->duration_minutes }} minutes **Location**: {{ $bookingRequest->preferred_location }} **Total Price**: ${{ number_format($bookingRequest->total_price, 2) }} **Your Payout**: ${{ number_format($bookingRequest->total_price * 0.9, 2) }} (after 10% platform fee) @endcomponent @if($bookingRequest->special_requests) ## Special Requests {{ $bookingRequest->special_requests }} @endif ## Respond Now Please review and respond to this booking request as soon as possible. Quick responses help you maintain a high acceptance rate and build trust with clients. @component('mail::button', ['url' => route('golfer.booking-requests.show', $bookingRequest->id)]) View & Respond to Request @endcomponent ## Your Options - **Accept**: Confirm the booking and add it to your calendar - **Decline**: Let the client know you're not available - **Message Client**: Ask questions or suggest alternative times @component('mail::panel') **Pro Tip**: Clients appreciate quick responses! Try to reply within 24 hours to maximize your bookings. @endcomponent Thanks,
The {{ config('app.name') }} Team @component('mail::subcopy') This request will expire in 48 hours if not responded to. View all your booking requests at {{ route('golfer.booking-requests.index') }} @endcomponent @endcomponent