@component('mail::message') # Reminder: Your Golf Session is Tomorrow! Hello {{ $booking->bookingRequest->client->name }}, This is a friendly reminder that you have a golf training session scheduled for tomorrow with {{ $booking->golferProfile->user->name }}. @component('mail::panel') **Session Details** **Date**: {{ \App\Helpers\TimezoneHelper::formatDate($booking->final_date, 'F j, Y', $booking->bookingRequest->client->timezone) }} (Tomorrow!) **Time**: {{ \App\Helpers\TimezoneHelper::formatTime($booking->start_time, 'g:i A', $booking->bookingRequest->client->timezone) }} - {{ \App\Helpers\TimezoneHelper::formatTime($booking->end_time, 'g:i A', $booking->bookingRequest->client->timezone) }} **Duration**: {{ $booking->start_time->diffInMinutes($booking->end_time) }} minutes **Location**: {{ $booking->bookingRequest->preferred_location }} **Golfer**: {{ $booking->golferProfile->user->name }} @endcomponent ## Pre-Session Checklist Make sure you're ready for a great session: - [ ] Confirm the meeting location and directions - [ ] Bring appropriate golf equipment (clubs, balls, tees) - [ ] Wear comfortable athletic attire and golf shoes - [ ] Arrive 5-10 minutes early - [ ] Bring water and any necessary items - [ ] Review any goals or questions you want to cover @component('mail::button', ['url' => route('client.bookings.show', $booking->id)]) View Booking Details @endcomponent ## Need to Make Changes? If something has come up and you need to cancel or reschedule, please contact {{ $booking->golferProfile->user->name }} as soon as possible. @component('mail::button', ['url' => route('conversations.show', $booking->bookingRequest->conversation_id)]) Message Your Golfer @endcomponent @component('mail::panel') **Cancellation Policy**: Cancellations made less than 24 hours before the session may not be eligible for a full refund. Please review our cancellation policy if you need to make changes. @endcomponent ## Contact Information If you have any last-minute questions or concerns, you can: - Message {{ $booking->golferProfile->user->name }} through our platform - Contact our support team if you encounter any issues We hope you have an excellent training session! Thanks,
The {{ config('app.name') }} Team @component('mail::subcopy') Session Time: {{ \App\Helpers\TimezoneHelper::formatForUser($booking->start_time, 'l, F j, Y \a\t g:i A', $booking->bookingRequest->client->timezone) }} @endcomponent @endcomponent