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

Animaux

@if($canManage) Ajouter @endif
@forelse($animals as $animal) @empty @endforelse
Identification Lot Espèce Race Sexe Poids Statut Actions
{{ $animal->identification }} {{ $animal->lot->code ?? '-' }} {{ $animal->species->name ?? '-' }} {{ $animal->breed->name ?? '-' }} {{ $animal->sex }} {{ $animal->weight ? $animal->weight . ' kg' : '-' }} @switch($animal->status ?? 'actif') @case('actif') Actif @break @case('vendu') Vendu @break @case('mort') Mort @break @default {{ $animal->status }} @endswitch @if($canManage)
@csrf @method('DELETE')
@endif
Aucun enregistrement.
@endsection