@extends('layouts.app') @section('title', $healthCenter->name) @section('content')
| Nom : | {{ $healthCenter->name }} |
| Type : | {{ ucfirst($healthCenter->type) }} |
| Directeur : | {{ $healthCenter->director_name }} |
| Capacité : | {{ $healthCenter->capacity }} lits |
| Statut : | @if($healthCenter->is_active) Actif @else Inactif @endif |
| Créé le : | {{ $healthCenter->created_at->format('d/m/Y') }} |
{{ $healthCenter->address }}
@if($healthCenter->city)
{{ $healthCenter->city }}
@endif
{{ $healthCenter->services }}
{{ $doctor->specialty }} @if($doctor->is_active) Actif @else Inactif @endif
@if($doctor->phone){{ $doctor->phone }}
@endifAucun médecin assigné à ce centre
Ajouter le premier médecin| Date | Patient | Médecin | Statut |
|---|---|---|---|
| {{ $ticket->created_at->format('d/m/Y H:i') }} | {{ $ticket->patient->first_name }} {{ $ticket->patient->last_name }} | Dr. {{ $ticket->doctor->first_name }} {{ $ticket->doctor->last_name }} | {{ ucfirst(str_replace('_', ' ', $ticket->status)) }} |
Aucune consultation enregistrée