@extends('layouts.app') @section('title', 'Gestion des Médicaments') @section('content')
| Nom | Marque | Dosage | Catégorie | Prix unitaire | Stock | Expiration | Centre | Actions |
|---|---|---|---|---|---|---|---|---|
|
{{ $medication->name }}
@if($medication->requires_prescription)
@endif
@if(!$medication->is_active)
Inactif
@endif
@if($medication->generic_name)
{{ $medication->generic_name }}
@endif
|
{{ $medication->brand ?? '-' }} |
{{ $medication->dosage }}
{{ $medication->form }} |
{{ $medication->category }} | {{ number_format($medication->unit_price, 0, ',', ' ') }} FCFA |
@if($medication->isLowStock())
{{ $medication->stock_quantity }}
@else
{{ $medication->stock_quantity }}
@endif
Min: {{ $medication->minimum_stock_level }} |
@if($medication->isExpired())
Périmé
{{ $medication->expiry_date->format('d/m/Y') }} @else {{ $medication->expiry_date->format('d/m/Y') }} @if($medication->expiry_date->diffInDays(now()) < 30) {{ $medication->expiry_date->diffInDays(now()) }} jours @endif @endif |
{{ $medication->healthCenter->name }} |
Commencez par ajouter vos premiers médicaments au stock.
Ajouter un médicament