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

Productions

@if($canManage) Nouvelle production @endif
@forelse($productions as $production) @php $typeLabels = ['viande'=>'Viande','oeufs'=>'Œufs','fumier'=>'Fumier','peaux'=>'Peaux','autre'=>'Autre']; @endphp @empty @endforelse
Date Lot Type Quantité Unité Qualité Actions
{{ $production->date->format('d/m/Y') }} {{ $production->lot->code ?? '-' }} {{ $typeLabels[$production->product_type] ?? $production->product_type }} {{ number_format($production->quantity, 2) }} {{ $production->unit }} {{ $production->quality_grade ?? '-' }} @if($canManage)
@csrf @method('DELETE')
@endif
Aucune production enregistrée.
@endsection