@extends('layouts.portal') @section('title', __('appointments.appointment_details') . ' — ' . config('app.name')) @section('page_title', $appointment->patient_name) @section('page_subtitle', $appointment->consultation_topic) @section('page_actions') {{ __('common.back') }} @endsection @section('content')
{{ __('appointments.patient_name') }}
{{ $appointment->patient_name }}
{{ __('appointments.phone') }}
{{ $appointment->phone }}
{{ __('appointments.gender') }}
{{ __('common.' . $appointment->gender) }}
{{ __('appointments.date_of_birth') }}
{{ $appointment->date_of_birth->format('M d, Y') }} ({{ $appointment->age }})
{{ __('appointments.weight_kg') }}
{{ $appointment->weight_kg }} {{ __('common.kg') }}
{{ __('appointments.height_cm') }}
{{ $appointment->height_cm }} {{ __('common.cm') }}
{{ __('appointments.address') }}
{{ $appointment->address }}
{{ __('appointments.consultation_topic') }}
{{ $appointment->consultation_topic }}
{{ $appointment->appointment_date->format('M d') }}
{{ \Carbon\Carbon::parse($appointment->appointment_time)->format('h:i A') }}
{{ __('appointments.cancellation_reason') }}
{{ $appointment->cancellation_reason }}