@extends('layouts.app')
@section('title', 'Vaccins')
@section('breadcrumb')
Vaccins
@endsection
@section('content')
Vaccins
@if($canManage)
Ajouter
@endif
| Nom |
Espèce cible |
Age recommande (jours) |
Actions |
@forelse($vaccines as $vaccine)
| {{ $vaccine->name }} |
{{ $vaccine->targetSpecies->name ?? '-' }} |
{{ $vaccine->recommended_age_days ?? '-' }} |
@if($canManage)
@endif
|
@empty
| Aucun enregistrement. |
@endforelse
@endsection