@extends('layouts.public') @section('title', __('booking.confirmed_title') . ' — ' . config('app.name')) @section('content')

{{ __('booking.confirmed_title') }}

{{ __('booking.confirmed_subtitle') }}

{{ __('booking.details_title') }}

{{ __('appointments.patient_name') }}
{{ $appointment->patient_name }}
{{ __('appointments.appointment_date') }}
{{ $appointment->appointment_date->translatedFormat('d M, Y') }}
{{ __('appointments.appointment_time') }}
{{ \Carbon\Carbon::parse($appointment->appointment_time)->format('h:i A') }}
{{ __('time_slots.consultation_type') }}
{{ __('appointments.types.' . $appointment->type) }}
{{ __('patients.consultant') }}
{{ $appointment->consultant->name }}
{{ __('appointments.consultation_topic') }}
{{ $appointment->consultation_topic }}
@if ($appointment->isOnline() && $appointment->zoom_join_url)

{{ __('booking.zoom_link_label') }}

{{ $appointment->zoom_join_url }}
@elseif (! $appointment->isOnline() && $appointment->consultant->clinicMapUrl())

{{ __('booking.clinic_location_label') }}

@if ($appointment->consultant->clinic_address)

{{ $appointment->consultant->clinic_address }}

@endif {{ __('booking.clinic_location_label') }}
@endif
{{ __('booking.back_to_home') }}
@endsection