@component('mail::message') # Session Completed - Share Your Experience! Hello {{ $booking->bookingRequest->client->name }}, We hope you had a fantastic golf training session with {{ $booking->golferProfile->user->name }}! @component('mail::panel') **Completed Session** **Golfer**: {{ $booking->golferProfile->user->name }} **Date**: {{ \App\Helpers\TimezoneHelper::formatDate($booking->final_date, 'F j, Y', $booking->bookingRequest->client->timezone) }} **Duration**: {{ $booking->start_time->diffInMinutes($booking->end_time) }} minutes **Amount Paid**: ${{ number_format($booking->price, 2) }} **Completed**: {{ \App\Helpers\TimezoneHelper::formatForUser($booking->completed_at, 'F j, Y \a\t g:i A', $booking->bookingRequest->client->timezone) }} @endcomponent ## Leave a Review Your feedback helps other clients make informed decisions and helps golfers improve their services. @component('mail::button', ['url' => route('client.bookings.review', $booking->id)]) Write a Review @endcomponent ## Book Again Had a great experience? Book another session with {{ $booking->golferProfile->user->name }}! @component('mail::button', ['url' => route('golfers.show', $booking->golferProfile->id)]) Book Again @endcomponent ## Your Receipt A detailed receipt for this session has been sent to your email. You can also download it from your booking history. @component('mail::panel') **Session Summary** - **Base Price**: ${{ number_format($booking->price, 2) }} - **Platform Fee**: Included - **Payment Method**: {{ $booking->payment->payment_method ?? 'Card' }} - **Transaction ID**: {{ $booking->payment->stripe_payment_intent_id ?? 'N/A' }} [Download Receipt]({{ route('client.bookings.receipt', $booking->id) }}) @endcomponent ## Explore More Golfers Ready to continue improving your game? Explore other professional golfers on our platform. @component('mail::button', ['url' => route('golfers.index')]) Browse Golfers @endcomponent Thank you for using The Fair Way Social! We look forward to helping you achieve your golfing goals. Thanks,
The {{ config('app.name') }} Team @component('mail::subcopy') Have an issue with this session? Contact our support team at {{ config('mail.from.address') }} @endcomponent @endcomponent