Back to Drug List

{{ $drug->name }}

{{ $drug->generic_name }}

{{ $drug->is_active ? 'Active' : 'Inactive' }}
Back to List

Total Stock

{{ number_format($totalStock) }}

units

Available Stock

{{ number_format($availableStock) }}

units

@if($expiredStock > 0)

Expired Stock

{{ number_format($expiredStock) }}

units

@endif

Prescriptions

{{ number_format($prescriptionCount) }}

total

Basic Information

Drug Name
{{ $drug->name }}
Generic Name
{{ $drug->generic_name }}
Manufacturer
{{ $drug->manufacturer }}
Category
{{ $drug->category_name }}
Dosage Form
{{ $drug->dosage_form }}
Strength
{{ $drug->strength }} {{ $drug->unit }}
Status
{{ $drug->is_active ? 'Active' : 'Inactive' }}
Prescription Required
@if($drug->prescription_required) Yes @else No @endif
@if($drug->description)
Description
{{ $drug->description }}
@endif @if($drug->storage_conditions)
Storage Conditions
{{ $drug->storage_conditions }}
@endif
@if($drug->side_effects && count($drug->side_effects) > 0)

Side Effects

    @foreach($drug->side_effects as $effect)
  • {{ $effect }}
  • @endforeach
@endif @if($drug->contraindications && count($drug->contraindications) > 0)

Contraindications

    @foreach($drug->contraindications as $contra)
  • {{ $contra }}
  • @endforeach
@endif @if($drug->interactions && count($drug->interactions) > 0)

Drug Interactions

    @foreach($drug->interactions as $interaction)
  • {{ $interaction }}
  • @endforeach
@endif
@forelse($drug->pharmacyStocks as $stock) @empty @endforelse
Quantity Unit Price Expiry Date Batch Number Supplier Status
{{ number_format($stock->quantity) }}
@if($stock->unit_price) {{ config('app.currency_symbol', '₦') }}{{ number_format($stock->unit_price, 2) }} @else - @endif
{{ $stock->expiry_date ? $stock->expiry_date->format('M d, Y') : '-' }}
{{ $stock->batch_number ?: '-' }}
{{ $stock->supplier ?: '-' }}
@if($stock->isExpired()) Expired @elseif($stock->isExpiringSoon()) Expiring Soon @elseif($stock->isLowStock()) Low Stock @else In Stock @endif

No stock entries found

Add stock entry →
@if($lowStockEntries->count() > 0)

Low Stock Alert

{{ $lowStockEntries->count() }} stock {{ $lowStockEntries->count() === 1 ? 'entry' : 'entries' }} {{ $lowStockEntries->count() === 1 ? 'is' : 'are' }} below reorder level.

@endif @if($expiringSoonEntries->count() > 0)

Expiring Soon

{{ $expiringSoonEntries->count() }} stock {{ $expiringSoonEntries->count() === 1 ? 'entry' : 'entries' }} {{ $expiringSoonEntries->count() === 1 ? 'is' : 'are' }} expiring within 30 days.

@endif

Additional Information

Expiry Alert Days
{{ $drug->expiry_alert_days }} days
Created
{{ $drug->created_at->format('M d, Y') }}
{{ $drug->created_at->format('h:i A') }}
Last Updated
{{ $drug->updated_at->format('M d, Y') }}
{{ $drug->updated_at->format('h:i A') }}