@extends('layouts.app') @section('title', 'My Appointments') @section('content')

My Appointments

@foreach($appointments as $appointment) @endforeach
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) Meet @elseif($appointment->video_call_room_id) Video @endif
@endsection