{{-- Breadcrumb --}}
@if ($appointment?->user?->disabilities) @endif
{{ __('Name') }} {{ ucwords($appointment?->user?->name) }}
{{ __('Email') }} {{ $appointment?->user?->email }}
{{ __('Age') }} {{ $appointment?->user?->details?->age }}
{{ __('Gender') }} {{ $appointment?->user?->details?->gender }}
{{ __('Old Appointment History') }} {{ __('History Here') }}
{{ __('Disabilities') }} {{ $appointment?->user?->disabilities }}
{{ __('Date') }} {{ formattedDate($appointment?->date) }}
{{ __('Schedule') }} {{ strtoupper($appointment?->schedule?->start_time) . '-' . strtoupper($appointment?->schedule?->end_time) }}
{{ __('Fee') }} {{ specific_currency_with_icon($appointment?->payable_currency, $appointment->appointment_fee) }}
{{ __('Consulted') }} @if ($appointment?->already_treated == 1) {{ __('Yes') }} @else {{ __('No') }} @endif
@csrf