@extends('layouts.land.master_top') @section('title', 'Register - Pain Cure | Dr. Amr Saeed') @section('css') @endsection @section('content')

Appointment Confirmation

Home / Appointment Confirmation

@if ($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 }} @else No Fees @endif
{{ __('basic.discount') }}
@if ($appointment->invoice_item) {{ $appointment->invoice_item->invoice->discount }} @else No Fees @endif
{{ __('basic.total price') }}
@if ($appointment->invoice_item) {{ $appointment->invoice_item->invoice->final_price }} @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)) }}

You need to login to get all serivces Register Now
@else

Sorry, there is no appointment available

@endif @endsection @section('js') @endsection