@extends('layouts.master') @section('title', 'Show Appointment | Proxima - Medical Management app') @section('title-topbar', 'Show Appointment') @section('css') @endsection @section('content')
{{ __('basic.dashboard') }} | {{ __('basic.appointments') }} | {{ __('basic.appointment') }}
@if ($appointment->meet_join_url) @php $patient_ur_wa = $appointment->meet_join_url; @endphp Start Video @else @php $patient_ur_wa = route('patient_auth.land_show_pat_appointment_public', $appointment->code); @endphp @endif WhatsApp
{{ __('basic.appointment') }}

{{ __('basic.patient') }}

{{ $appointment->patient->name }}

{{ $appointment->patient->phone_number }}

{{ __('basic.branch') }}

{{ $appointment->branch->name }}

{{ __('basic.address') }}

{{ $appointment->branch->address }}

{{ __('basic.creator') }}

{{ $appointment->creator->name }}

{!! QrCode::color(68, 95, 129)->size(60)->style('round')->eye('circle')->generate($appointment->code) !!}

{{ $appointment->code }}


{{ $appointment->service_item->name }}
@if ($appointment->invoice_item) {{ $appointment->invoice_item->price }} {{ __('basic.egp') }} @else No fees @endif
{{ __('basic.discount') }}
@if ($appointment->invoice_item) @if (!empty($invoice->invoice_item->invoice->discount)) {{ $appointment->invoice_item->invoice->discount }} {{ __('basic.egp') }} @else 0 @endif @else No fees @endif
{{ __('basic.total price') }}
@if ($appointment->invoice_item) {{ $appointment->invoice_item->invoice->final_price }} {{ __('basic.egp') }} @else No fees @endif
{{ $appointment->note }}
@error('appointment_note') {{ $message }} @enderror
{{ __('patientappo.come before 15 msg') }}
{{ __('basic.appointment time') }}

{{ date('h:i a', strtotime($appointment->start_at)) . ' to ' . date('h:i a', strtotime($appointment->end_at)) }}

{{ date('d M Y', strtotime($appointment->start_at)) }}

@endsection @section('js') @endsection