@include('includes/header_start') @include('includes/header_end')

View all patients

You are able to add and manage patients through this page.

@foreach($patients as $patient) @if($patient->status == 1) @elseif($patient->status == 0) @endif @endforeach
Full Name State Status Created Updated
{{ $patient->first_name }} {{ $patient->last_name }} {{ $patient->state }} Active Inactive {{ date('m/d/Y', strtotime($patient->created_at)) }} {{ $patient->updated_at->diffForHumans() }}
@include('includes/footer_start') @include('includes/footer_end')