@extends('gestions.layouts') @section('content')
@if ($gestions->isEmpty())

Aucune production enregistrée pour ce jour.

@else @foreach ($gestions as $gestion) @endforeach
Produit Quantité
{{ $gestion->produit->referenceA }} {{ $gestion->quantite * 1 }} {{ $gestion->unite }}
@csrf @method('DELETE')
@endif
@csrf
@error('famille') {{ $message }} @enderror
@if ($errors->has('produit_id')) {{ $errors->first('produit_id') }} @endif
@error('quantite') {{ $message }} @enderror
@error('unite') {{ $message }} @enderror
@endsection @section('scripts') @endsection