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

Races

@if($canManage) Ajouter @endif
@forelse($breeds as $breed) @empty @endforelse
Nom Espèce Poids moyen Lots Actions
{{ $breed->name }} {{ $breed->species->name ?? '-' }} {{ $breed->avg_weight ? $breed->avg_weight . ' kg' : '-' }} {{ $breed->lots_count ?? $breed->lots->count() ?? 0 }} @if($canManage)
@csrf @method('DELETE')
@endif
Aucun enregistrement.
@endsection