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

Appointments

Create
@foreach ($appointments as $a) @endforeach
# When Patient Doctor Status
{{ $a->id }} {{ $a->scheduled_at }} {{ $a->patient->user->name ?? '-' }} {{ $a->doctor->user->name ?? '-' }} {{ $a->status }} Open
{{ $appointments->links() }}
@endsection