@extends('layouts.base') @section('stylesheets') @endsection @section('content')
{{ $patient->first_name }} {{ $patient->last_name }}
{{ $patient->email }}
{{ $patient->gender }}
{{ $patient->dob }}
{{ $patient->phone_number }}
{{ $patient->nationality }}
{{ $patient->identification_number }}
{{ $patient->address }}
{{ $certificate->code }}
{{ $certificate->created_at->format('Y-m-d') }}
{{ $certificate->facility->name }}
{{ $certificate->createdBy->first_name }} {{ $certificate->createdBy->last_name }}
| Date | Vaccine | Batch Number | Dose | Next Dose Date | Personnel | Place of Vaccination | @if(Auth::user()->user_type == 2)Action | @endif
|---|---|---|---|---|---|---|---|
| {{ $vaccination->vaccination_date }} | {{ $vaccination->vaccine->product_name }} | {{ $vaccination->batch_number }} | @if($vaccination->dose == 1) 1ST DOSE @elseif($vaccination->dose == 2) 2ND DOSE @elseif($vaccination->dose == 3) BOOSTER SHOT @elseif($vaccination->dose == 4) OTHER @endif | {{ $vaccination->next_dose_date }} | {{ $vaccination->issuedBy->first_name }} {{ $vaccination->issuedBy->last_name }} | {{ $vaccination->place_of_vaccination }} | @if(Auth::user()->user_type == 2)Edit Remove | @endif
There is currently have no COVID vaccination record under patient
@if(Auth::user()->user_type == 2) @endif