@extends('layouts.app') @section('title', 'Video Consultation') @section('content')

Video Consultation

Back to Dashboard

Appointment Details

Patient: {{ $appointment->patient->full_name }}

Doctor: {{ $appointment->doctor ? $appointment->doctor->full_name : 'Not Assigned' }}

Room ID: {{ $appointment->video_call_room_id }}

@if($appointment->video_call_room_id)
@else

No video call room ID available for this appointment.

Please contact support or create a new appointment.

@endif
@endsection