View all patients

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

@foreach($patients as $patient) @endforeach
Patient Name Address Tel Billing Status Created Updated
{{ $patient->first_name }} {{ $patient->last_name }} @isset($patient->address1) {{ $patient->address1."," }}
{{ $patient->city."," }}
{{ $patient->state."," }}
{{ $patient->zipcode }}
@endisset
{{ $patient->user->phone }} @isset($patient->billing) @foreach($patient->billing as $billing) {{-- @foreach($billing as $status)--}} {{-- {{ dd($billing['status']) }}--}} @if($billing['status'] === 'AMOUNT DUE') Incomplete @elseif($billing['status'] === 'OUTSTANDING') Outstanding @elseif($billing['status'] === 'INVOICE SENT') Invoice Sent @elseif($billing['status'] === 'PAID') Paid @endif {{-- @endforeach--}} @endforeach @endisset {{ date('m/d/Y', strtotime($patient->created_at)) }} {{ $patient->updated_at->diffForHumans() }}