@extends('layouts.app') @section('title', 'My Appointments') @section('content')
| Patient | Date | Status | Actions |
|---|---|---|---|
| {{ $appointment->patient->full_name }} | {{ $appointment->appointment_date->format('M d, Y H:i') }} | {{ ucfirst($appointment->status) }} |
@if($appointment->google_meet_link)
Google MeetMeet
@elseif($appointment->video_call_room_id)
Join Video CallVideo
@endif
@if($appointment->status !== 'completed')
Create PrescriptionCreate
@elseif($appointment->prescription)
View PrescriptionView
@endif
|