@extends('front.layouts.master') @section('frontend-css') @endsection @section('content') Appointment Summary Home Appointment Doctor Details {{ $getDoctorDetail['name'] }} {{ $getDoctorDetail['designations'] }} {{ $getDoctorDetail['services'] }} Patient Details {{ $inputs['full_name'] ?? '' }} {{ $inputs['email_id'] ?? '' }} @if($inputs['appointment_dial_code']) {{$inputs['appointment_dial_code']}} @endif {{ $inputs['phone_number'] ?? '' }} Appointment Date {{ dateFormat($inputs['booking_date'], DISPLAY_DATE) }} Slot {{ ucfirst($inputs['slot_type']) }} Appointment Time {{ $inputs['slot_timing'] }} Billing Summary Consultation Fee {{ $inputs['doctor_fee_symbol'] }} {{-- Tax ₹0.00 --}} Total Amount {{ $inputs['doctor_fee_symbol'] }} @if ($inputs['payment_method'] == 'cash') Book Now @else Pay Now 100% Secure Payment @endif @endsection @section('frontend_bottom_script') {{-- --}} @endsection
Appointment