Hi {{ $booking->user->name ?? 'there' }},
Great news! Your counseling session has been confirmed.
Here are your booking details:
{{-- Booking Details Card --}}
📋 Booking Details
👤
Counselor
{{ $booking->counselor->user->name ?? 'Your Counselor' }}
@if($booking->counselor->title ?? false)
{{ $booking->counselor->title }}
@endif
📅
Date
{{ $booking->booking_date instanceof \Carbon\Carbon
? $booking->booking_date->format('l, d F Y')
: \Carbon\Carbon::parse($booking->booking_date)->format('l, d F Y') }}
🕐
Time
{{ \Carbon\Carbon::parse($booking->booking_time)->format('h:i A') }}
💻
Meeting Type
{{ ucfirst($booking->meeting_type ?? 'Online') }}
💰
Session Fee
PKR {{ number_format($booking->fee ?? 0) }}
@if($booking->meeting_link ?? false)
@endif
@if($booking->student_message ?? false)
Your message to counselor:
"{{ $booking->student_message }}"
@endif
📌 Reminder: Please be available 5 minutes before your session time.
If you need to cancel or reschedule, please do so at least 24 hours in advance from your dashboard.