@extends('layouts.master') @section('title', 'Completed Immunizations') @section('content')
Active Queue {{ $patients->count() }} Completed
@if($patients->isEmpty())
No Completed Immunizations

No immunization encounters found.

@else
@foreach($patients as $index => $patient) @endforeach
# Patient Visit Completed Action
{{ $index + 1 }}
{{ $patient->first_name }} {{ $patient->last_name }}
{{ $patient->patient_no }}
{{ $patient->visit_no }} {{ \Carbon\Carbon::parse( $patient->completed_at )->format('d M Y H:i') }} Review
@endif
@endsection