@extends('front.layouts.print') @section('css') @endsection @section('content')
{{-- Use public_path() for PDF image --}} @if(!empty($logo)) Modern Hospital @endif

Appointment Details

Appointment Information
{{-- --}} {{-- --}}
Appointment Number {{ $data->appointment_number }}
Appointment Date {{ dateFormat($data->appointment_date, DISPLAY_DATE) }}
Appointment Time ({{ ucfirst($data->slot_type) }}) {{ $data->slot_timing }}
Appointment Status {{bookingStatusText($data->status)}}
Status {{ $data->payment_status == 1 ? 'Confirmed' : 'Payment Failed' }}
Slot Type {{ ucfirst($data->slot_type) }}
Doctor Information
Doctor Name {{ $getDoctorDetail->name }}
Qualification {{ $getDoctorDetail->designations ?? '' }}
Specialization {{ $getDoctorDetail->services ?? '' }}
Gender {{ ucfirst($getDoctorDetail['gender'] ?? '') }}
Patient Information
Patient Name {{ $data->full_name }}
Email {{ $data->email_id }}
Phone {{ $data->phone_number }}
Message {{ $data->message }}
Payment Information
@if (isset($data->payment_id)) @endif {{-- --}} {{-- --}}
Transaction ID {{ $data->payment_id }}
Payment Method {{ $data->payment_id != '' ? 'Online' : 'Cash' }}
Payment Status {{ $data->payment_status == 1 ? 'Paid' : 'Not Paid' }}
Consultation Fee {{ $data->doctor_fee }}
Tax ₹ 0.00
Total Amount {{ $data->doctor_fee }}
{{--
Billing Summary
Consultation Fee {{ $data->doctor_fee }}
Tax ₹ 0.00
Discount ₹ 0.00
Total Amount {{ $data->doctor_fee }}
--}} @endsection @section('bottom_script') @endsection