@extends('layouts.base') @section('title', 'Formulaire des productions') @section('breadcrumb') @endsection @section('content')

Veuillez remplir le formulaire

@csrf
{{ \Carbon\Carbon::parse(request('date'))->format('d/m/Y') }}
{{ $section->name }}
@foreach($productions as $index => $production) @include('crud.production.production', ['index' => $index, 'production' => $production, 'products' => $products]) @endforeach
@endsection