@extends('front.layouts.master') @section('css') @endsection @section('content') Appointment Booked Home Appointment Booked Appointment Booked Your appointment has been successfully booked. Appointment Information Appointment Number {{ $data['appointment_number'] }} Booking Date {{ dateFormat($data['created_at'], DISPLAY_DATE) }} Booking Confirmation Status {{ucfirst($data['status'])}} Appointment Date {{ dateFormat($data['appointment_date'], DISPLAY_DATE) }} Slot {{ ucfirst($data['slot_type']) }} Appointment Time {{ $data['slot_timing'] }} Doctor Information Doctor Name {{ $data['doctor_name'] }} Qualification {{ $getDoctorDetail['designations'] }} Specialization {{ $getDoctorDetail['services'] }} Hospital Modern Hospital Patient Information Patient Name {{ $data['full_name'] ?? 'John Doe' }} Email Address {{ $data['email_id'] ?? 'johndoe@gmail.com' }} Mobile Number {{ $data['phone_number'] ?? '+91-123-456-789' }} Message {{ $data['message'] ?? '' }} {{-- Payment Information Transaction ID {{ $data['payment_id'] }} Payment Method @if (isset($payment_method) && $payment_method =='online') Razorpay @else Cash @endif Payment Date {{ !empty( $data['payment_id']) ? dateFormat($data['appointment_date'], DISPLAY_DATE) : '' }} Payment Status {{ $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
Appointment Booked
Your appointment has been successfully booked.