@extends('layouts.app') @section('title', $medication->name) @section('content')
| Nom : | {{ $medication->name }} |
| Marque : | {{ $medication->brand }} |
| Nom générique : | {{ $medication->generic_name }} |
| Dosage : | {{ $medication->dosage }} |
| Forme : | {{ $medication->form }} |
| Catégorie : | {{ $medication->category }} |
| Fabricant : | {{ $medication->manufacturer }} |
| Lot : | {{ $medication->batch_number }} |
| Date d'expiration : | {{ \Carbon\Carbon::parse($medication->expiry_date)->format('d/m/Y') }} |
| Statut : | @if($medication->is_active) Actif @else Inactif @endif |
| Prescription : | @if($medication->requires_prescription) Requise @else Libre @endif |
{{ $medication->description }}
| Date | Patient | Quantité | Prix total |
|---|---|---|---|
| {{ $sale->created_at->format('d/m/Y H:i') }} | {{ $sale->patient_name }} | {{ $sale->quantity }} | {{ number_format($sale->total_price, 0, ',', ' ') }} FCFA |
Aucune vente enregistrée pour ce médicament
| Prix unitaire : | {{ number_format($medication->unit_price, 0, ',', ' ') }} FCFA |
| Seuil d'alerte : | {{ $medication->minimum_stock_level }} |
| Valeur stock : | {{ number_format($medication->stock_quantity * $medication->unit_price, 0, ',', ' ') }} FCFA |
{{ $medication->healthCenter->address }}
{{ $medication->healthCenter->phone }}