@extends('layouts.app') @section('content')
@if(session('success')) @endif @if(session('info')) @endif @if(session('warning')) @endif

Patients

New and Pending prescription requests from patients

{{ count($patients) }} Pending Review
@forelse($patients as $patient) @empty @endforelse
Patient Name Date of Request Chief Complaint Medication Prescription Type Action

{{ $patient['first_name'] }} {{ $patient['last_name'] }}

DOB: {{ \Carbon\Carbon::parse($patient['date_of_birth'])->format('m/d/Y') }}

{{ \Carbon\Carbon::parse($patient['date_submitted'])->format('M d, Y') }}
{{ \Carbon\Carbon::parse($patient['date_submitted'])->format('g:i A') }}
{{ $patient['chief_complaint'] }}
{{ $patient['medication'] }}
{{ $patient['status'] }} View

No pending patient requests

All requests have been reviewed

@endsection