@extends('layouts.app') @section('title', 'Vaccin : ' . $vaccine->name) @section('breadcrumb')
| Nom : | {{ $vaccine->name }} |
|---|---|
| Espèce cible : | {{ $vaccine->targetSpecies->name ?? 'Toutes les espèces' }} |
| Description : | {{ $vaccine->description ?? '-' }} |
| Age recommande : | {{ $vaccine->recommended_age_days ? $vaccine->recommended_age_days . ' jours' : '-' }} |
| Lot | Date | Prochain rappel | Dose | Cout |
|---|---|---|---|---|
| {{ $vaccination->lot->code ?? '-' }} | {{ \Carbon\Carbon::parse($vaccination->date)->format('d/m/Y') }} | {{ $vaccination->next_due_date ? \Carbon\Carbon::parse($vaccination->next_due_date)->format('d/m/Y') : '-' }} | {{ $vaccination->dose ?? '-' }} | {{ $vaccination->cost ? number_format($vaccination->cost, 2) . ' FCFA' : '-' }} |
| Aucune vaccination enregistree. | ||||