@extends('layouts.main') @push('styles') @endpush @section('content')

Patient Timeline

@if(!is_null($patient->photo) && $patient->photo != "") Photo not available @else Photo not available @endif
Patient Names: {{ $patient->first_name }} {{ $patient->last_name }}
Gender: {{ $patient->gender == 1 ? "Male" : "Female" }}
Age: {{ get_patients_age($patient->date_of_birth) }}


Patient Number: {{ $patient->number }}
Phone: {{ $patient->phone }}
Email: {{ $patient->email }}
@endsection @push('scripts') @endpush