@extends('layouts.app') @section('title', 'Vaccin : ' . $vaccine->name) @section('breadcrumb') @endsection @section('content')

{{ $vaccine->name }}

Modifier Retour
Informations
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' : '-' }}
{{-- Vaccinations utilisant ce vaccin --}}
Vaccinations effectuees
@forelse($vaccine->vaccinations ?? [] as $vaccination) @empty @endforelse
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.
@endsection