@extends('layouts.app') @section('title', 'Booking Confirmed — CareerPath') @push('styles') @endpush @section('content')

Booking Confirmed!

Your session with {{ $booking->counselor->user->name ?? 'the counselor' }} has been successfully booked.

⏳ Awaiting counselor confirmation
Counselor {{ $booking->counselor->user->name ?? 'N/A' }}
Date {{ optional($booking->booking_date)->format('D, d M Y') ?? 'TBD' }}
Time {{ $booking->booking_time ?? 'TBD' }}
Type {{ ucfirst($booking->meeting_type ?? 'Online') }}
Fee PKR {{ number_format($booking->fee ?? 0) }}
Booking ID #{{ str_pad($booking->id, 5, '0', STR_PAD_LEFT) }}
Status {{ ucfirst($booking->status) }}
A confirmation email has been sent to {{ auth()->user()->email ?? '' }}. The counselor will confirm your booking shortly.
My Dashboard Explore Careers
@endsection