@component('mail::message') # Booking Request Declined Hello {{ $bookingRequest->client->name }}, Unfortunately, {{ $bookingRequest->golferProfile->user->name }} is unable to accept your booking request at this time. @component('mail::panel') **Declined Booking Request** **Golfer**: {{ $bookingRequest->golferProfile->user->name }} **Requested Date**: {{ $bookingRequest->formatted_proposed_date }} **Requested Time**: {{ $bookingRequest->formatted_proposed_time }} **Duration**: {{ $bookingRequest->duration_minutes }} minutes @endcomponent @if(isset($declineReason) && $declineReason) ## Message from the Golfer "{{ $declineReason }}" @endif ## What You Can Do Next Don't let this setback discourage you! Here are your options: ### 1. Try Another Time Slot The golfer may be available at a different time. Check their availability and send a new request. @component('mail::button', ['url' => route('golfers.show', $bookingRequest->golferProfile->id)]) View Golfer's Availability @endcomponent ### 2. Browse Other Golfers Explore our network of professional golfers and find someone who matches your schedule and needs. @component('mail::button', ['url' => route('golfers.index')]) Find Another Golfer @endcomponent ### 3. Message the Golfer You can still communicate with the golfer to ask about alternative dates or options. @component('mail::panel') **Pro Tip**: Many golfers can accommodate flexible scheduling. Try reaching out with a few alternative date options to increase your chances of booking! @endcomponent We're here to help you find the perfect training session. Keep trying! Thanks,
The {{ config('app.name') }} Team @component('mail::subcopy') Need help finding a golfer? Contact our support team at {{ config('mail.from.address') }} @endcomponent @endcomponent