@extends('layouts.master') @section('title', 'Immunization Queue') @section('content')
{{ $patients->count() }} Waiting
@if(session('success'))
{{ session('success') }}
@endif @if($patients->isEmpty())
No Patients In Immunization Queue

There are currently no patients waiting.

@else
@foreach($patients as $index => $patient) @endforeach
# Patient Visit Gender Queued Action
{{ $index + 1 }}
{{ $patient->first_name }} {{ $patient->last_name }}
{{ $patient->patient_no }}
{{ $patient->visit_no }} {{ $patient->gender }} {{ \Carbon\Carbon::parse( $patient->routed_at )->diffForHumans() }} Open
@endif
@endsection