@extends('layouts.app') @section('title', 'Payment Successful') @section('content')

Payment Successful!

Your appointment has been confirmed. A confirmation email has been sent to your registered email address.

Appointment Details

{{ $appointment->appointment_id }}


{{ $doctor->name }}

{{ $clinic->name }}

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

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


₹{{ number_format($appointment->appointment_fee, 2) }}

What's Next?
    @if($appointment->consultation_type === 'video')
  • You will receive a video call link 30 minutes before the appointment
  • Ensure you have a stable internet connection and a working camera/microphone
  • Join the call 5 minutes before the scheduled time
  • @else
  • Please arrive 10 minutes before your scheduled appointment time
  • Bring a valid ID proof with you
  • The clinic address and directions have been sent to your email
  • @endif
  • For any queries, contact us at support@predcare.com
@endsection