@extends('layouts.app') @section('title', 'Appointments') @section('content')
| # | When | Doctor | Status | |
|---|---|---|---|---|
| {{ $a->id }} | {{ $a->scheduled_at }} | {{ $a->doctor->user->name ?? '-' }} | {{ $a->status }} | @if (!in_array($a->status, ['completed','cancelled'], true)) @endif |