@extends('front.layouts.master') @section('css') @endsection @section('content')

Appointment Booked

  • Home
  • Appointment Booked

Appointment Booked

Your appointment has been successfully booked.

Appointment Information
{{ $data['appointment_number'] }}
{{ dateFormat($data['created_at'], DISPLAY_DATE) }}
{{ucfirst($data['status'])}}
{{ dateFormat($data['appointment_date'], DISPLAY_DATE) }}
{{ ucfirst($data['slot_type']) }}
{{ $data['slot_timing'] }}
Doctor Information
{{ $data['doctor_name'] }}
{{ $getDoctorDetail['designations'] }}
{{ $getDoctorDetail['services'] }}
Modern Hospital
Patient Information
{{ $data['full_name'] ?? 'John Doe' }}
{{ $data['email_id'] ?? 'johndoe@gmail.com' }}
{{ $data['phone_number'] ?? '+91-123-456-789' }}
{{ $data['message'] ?? '' }}
{{--
Payment Information
{{ $data['payment_id'] }}
@if (isset($payment_method) && $payment_method =='online') Razorpay @else Cash @endif
{{ !empty( $data['payment_id']) ? dateFormat($data['appointment_date'], DISPLAY_DATE) : '' }}
{{ $data['payment_status'] == 1 ? 'Paid' : 'Not Paid' }}
--}}
Billing Summary
Consultation Fee {{ $data['doctor_fee'] }}
Payment Method @if (isset($payment_method) && $payment_method =='online') Razorpay @else Cash @endif
{{--
Discount ₹0.00
--}}
Total Amount {{ $data['doctor_fee'] }}
Important Instructions
  • Please arrive 30 minutes before your appointment.
  • Carry previous medical reports and prescriptions.
  • Bring a valid ID proof during your visit.
  • Contact hospital support for cancellation or rescheduling.
Note:- Your appointment is currently booked and awaiting confirmation from the hospital.We will notify you by email once your appointment is confirmed or cancelled by the hospital.
@php $payment_id = $inputs['payment_id'] ?? null; @endphp Print Receipt Download PDF
@endsection @section('bottom_script') @endsection