@extends('layouts.app') @section('title', 'Détails collecte d\'œufs') @section('breadcrumb') @endsection @section('content')
Collecte du {{ $eggProduction->date->format('d/m/Y') }}
Catégorie {{ $eggProduction->category }}
Lot
{{ $eggProduction->lot->code ?? '-' }}
Bâtiment
{{ $eggProduction->building->name ?? '-' }}
Date
{{ $eggProduction->date->format('d/m/Y') }}
Quantité collectée
{{ number_format($eggProduction->quantity) }} œufs
Cassés
{{ $eggProduction->broken ?? 0 }}
Catégorie
{{ $eggProduction->category }}
@if($eggProduction->notes)
Notes

{{ $eggProduction->notes }}

@endif
Retour
Modifier
@csrf @method('DELETE')
@endsection