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

Prescriptions

Approved eRX prescriptions

{{ count($prescriptions) }} Approved
@forelse($prescriptions as $prescription) @empty @endforelse
eRX ID Patient Name Medication Sig (Directions) Date Approved Pharmacy Actions
{{ $prescription['erx_id'] }}

{{ $prescription['patient_name'] }}

DOB: {{ $prescription['patient_dob'] }}

{{ $prescription['medication'] }}
{{ $prescription['sig'] }} {{ \Carbon\Carbon::parse($prescription['date_approved'])->format('M d, Y') }}
{{ \Carbon\Carbon::parse($prescription['date_approved'])->format('g:i A') }}
{{ $prescription['pharmacy'] }}
View

No prescriptions found

Approved prescriptions will appear here

@endsection