Medicine Directory & Disease Prescriptions
Add, manage and standardize medicines with active chemical composition, dose, frequency and clinical indications.
Total Medicines
{{ $medicines->total() }}
With Composition
{{ $medicines->filter(fn($m)=>$m->compositions->count())->count() }}
Categories
{{ $categories->count() }}
Prescribing Contributors
{{ \App\Models\User::whereIn('role',['doctor','admin'])->count() }}
Showing {{ $medicines->count() }} of {{ $medicines->total() }} medicines
@forelse($medicines as $m)
@php $comp = $m->compositions->map(fn($c)=>trim($c->chemical.' '.$c->strength))->join(' + '); @endphp
@empty
@endforelse
{{ $m->drug_category ?? 'General' }}
{{ $m->name }}@if($m->brand_name) ({{ $m->brand_name }})@endif
Active Chemical Composition
{{ $comp ?: '—' }}
Disease / Clinical Indication:
{{ $m->indication ?? 'General Condition' }}
Instructions: {{ $m->instructions ?? 'Follow the prescribed instructions carefully.' }}
{{ $m->status ? 'Active' : 'Inactive' }}
No medicines yet
Add one to build your directory.