@extends('layouts.app') @section('title', 'All Appointments') @section('content')
| Patient | Date/Time | Type | Status | Actions | ||
|---|---|---|---|---|---|---|
|
{{ $appointment->patient->full_name }}
{{ $appointment->patient->patient_id }}
|
@if($appointment->appointment_date) {{ $appointment->appointment_date->format('M d, Y H:i') }} @else Immediate @endif | {{ ucfirst($appointment->appointment_type) }} | {{ ucfirst($appointment->status) }} |
@if($appointment->prescription)
View PrescriptionPrescription
@endif
@if($appointment->google_meet_link)
Google MeetMeet
@elseif($appointment->video_call_room_id)
Video CallCall
@endif
|
||
| No appointments found. | ||||||