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

Incubations

@if($canManage) Nouvelle incubation @endif
@forelse($incubations as $incubation) @empty @endforelse
Lot source Œufs mis Date mise Éclosion prévue Éclosion réelle Eclos Fertilité Lot résultant Actions
{{ $incubation->lot->code ?? '-' }} {{ $incubation->eggs_set }} {{ $incubation->set_date->format('d/m/Y') }} {{ $incubation->expected_hatch_date->format('d/m/Y') }} {{ $incubation->actual_hatch_date?->format('d/m/Y') ?? '-' }} {{ $incubation->hatched_count ?? '-' }} {{ $incubation->fertility_rate ? $incubation->fertility_rate . '%' : '-' }} {{ $incubation->resultingLot->code ?? '-' }} @if($canManage)
@csrf @method('DELETE')
@endif
Aucune incubation enregistrée.
@endsection