@extends('layouts.public-booking', ['title' => 'Booking Confirmed - Booklio']) @include('public.booking.partials.data') @section('content')
@if (session('status'))
{{ session('status') }}
@endif

{{ $appointment?->status_value === 'cancelled' ? 'Booking Cancelled' : 'Booking Confirmed' }}

Your appointment has been scheduled. A WhatsApp confirmation note and email reminder will be sent shortly.

Booking ID

{{ $selected['booking_id'] }}

@foreach ([['Service', $selected['service']], ['Staff', $selected['staff']], ['Date/time', $selected['date'] . ' - ' . $selected['time']], ['Customer', $selected['customer']]] as $row)

{{ $row[0] }}

{{ $row[1] }}

@endforeach
Add to calendar Back to business page
@if ($appointment)
Reschedule Cancel
@endif
@endsection