@extends('layouts.admin') @section('page_kicker', 'Pharmacy') @section('page_title', 'Pharmacy management') @section('content')

Add medicine

Stock and pricing for dispensary.

@csrf

Pending prescriptions

Ready for pharmacy fulfillment.

@foreach($pendingPrescriptions as $prescription)

#{{ $prescription->id }} ยท {{ $prescription->patient->name ?? 'Patient #'.$prescription->patient_id }}

@csrf @method('PATCH')
@endforeach

Medicine inventory

Adjust stock levels and catalog status.

@foreach($medicines as $medicine)
@csrf @method('PATCH')
@endforeach
{{ $medicines->links() }}
@endsection