@extends('layouts.app') @section('title', 'Complete Payment - ' . $appointment->appointment_id) @section('content')
Complete Payment

Appointment ID: {{ $appointment->appointment_id }}

Appointment Summary

{{ $doctor->name }}

{{ $clinic->name }}

{{ date('d M, Y', strtotime($appointment->appointment_date)) }}

@if($appointment->consultation_type === 'video') Video Call @else In-Person @endif


Consultation Fee: ₹{{ number_format($amount, 2) }}
Taxes & Charges: ₹0.00

Total Amount
₹{{ number_format($amount, 2) }}
Payment Method

Secure payment powered by Razorpay

@csrf

Your payment information is secure and encrypted

Important Information
  • Your appointment will be confirmed only after successful payment
  • A confirmation email will be sent to your registered email address
  • You can reschedule or cancel the appointment up to 24 hours before the scheduled time
  • Please ensure you have a stable internet connection during payment
@endsection