@extends('layouts.app') @section('title', 'Vaccins') @section('breadcrumb') @endsection @section('content')

Vaccins

@if($canManage) Ajouter @endif
@forelse($vaccines as $vaccine) @empty @endforelse
Nom Espèce cible Age recommande (jours) Actions
{{ $vaccine->name }} {{ $vaccine->targetSpecies->name ?? '-' }} {{ $vaccine->recommended_age_days ?? '-' }} @if($canManage)
@csrf @method('DELETE')
@endif
Aucun enregistrement.
@endsection