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

You're All Set!

Your session with {{ $booking->counselor->user->name ?? 'the counselor' }} is booked. You'll receive a confirmation email shortly.

Booking ID #{{ str_pad($booking->id, 5, '0', STR_PAD_LEFT) }}
Date {{ optional($booking->booking_date)->format('D, d M Y') ?? '—' }}
Time {{ $booking->booking_time ?? '—' }}
Type {{ ucfirst($booking->meeting_type ?? 'Online') }}
Fee PKR {{ number_format($booking->fee ?? 0) }}
Status ⏳ {{ ucfirst($booking->status) }}
The counselor will confirm within 24 hours. Check your email for updates.
Go Home Explore Careers
@endsection