@include('dashboard.headerlinks') @include('dashboard.leftmenu')
@include('dashboard.topmenu')

Patients

@if($user->role == 'admin')
@foreach($patients as $patient) @endforeach
ID Statut Nom et prénoms Email Genre Habitation Téléphone Date de création Action
{{$patient->user->statut}} {{$patient->name}} {{$patient->user->email}} {{$patient->genre}} {{$patient->habitation}} {{$patient->telephone}} {{$patient->created_at}} @if($patient->user->statut == 'enable') @endif @if($patient->user->statut == 'disable') @endif
@endif
@include('dashboard.footerlinks')