{{ __('Pharmacy Dashboard') }} {{ $pharmacy->pharmacy_name ?? ('Pharmacy #' . $pharmacy->pharmacy_id) }}
@if(session('success'))
{{ session('success') }}
@endif
{{ __('Record Dispense') }}
@forelse($logs as $log) @empty @endforelse
{{ __('Date') }} {{ __('Recipient') }} {{ __('Drug') }} {{ __('Qty') }} {{ __('Confirmed') }}
{{ $log->received_at }} {{ optional($log->recipient)->first_name }} {{ optional($log->recipient)->last_name }} ({{ $log->recipient_id }}) {{ optional($log->drug)->name ?? $log->drug_id }} {{ $log->quantity_dispensed }} {{ $log->patient_confirmed_at ? __('Yes') : __('No') }}
{{ __('No deliveries for this month.') }}
{{ $logs->links() }}