@extends('backoffice.doctor.layout') @section('content')
| N° | Patient | Description | Date | Heure début | Heure fin | Status | Action | |||
|---|---|---|---|---|---|---|---|---|---|---|
| {{ $loop->index + 1 }} | {{ $appointment->patient->getFullName() ?? '' }} | {{ $appointment->description ?? '' }} | {{ $appointment->date->format('d/m/Y') }} | {{ $appointment->between ?? '' }} | {{ $appointment->to ?? '' }} | @switch($appointment->status) @case(\App\Enums\AppointmentStatus::SCHEDULED->value){{ $appointment->status ?? '' }} | @break @case(App\Enums\AppointmentStatus::CANCELLED->value) @case(App\Enums\AppointmentStatus::REJECTED->value){{ $appointment->status ?? '' }} | @break @case(App\Enums\AppointmentStatus::PENDING->value){{ $appointment->status ?? '' }} | @break @default{{ $appointment->status ?? '' }} | @endswitch
|
| Aucun rendez vous | ||||||||||