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

My Appointments

Book
@foreach ($appointments as $a) @endforeach
# When Doctor Status
{{ $a->id }} {{ $a->scheduled_at }} {{ $a->doctor->user->name ?? '-' }} {{ $a->status }} @if (!in_array($a->status, ['completed','cancelled'], true))
@csrf
@endif
{{ $appointments->links() }}
@endsection