@extends('layouts.app') @section('title', 'Détails distribution') @section('breadcrumb') @endsection @section('content')
Distribution alimentaire
{{ \Carbon\Carbon::parse($feeding->date)->format('d/m/Y') }}
Lot
{{ $feeding->lot->code ?? '-' }}
Aliment
{{ $feeding->feed->name ?? '-' }}
Quantité
{{ $feeding->quantity }} {{ $feeding->feed->unit ?? 'kg' }}
Date
{{ \Carbon\Carbon::parse($feeding->date)->format('d/m/Y') }}
Enregistré par
{{ $feeding->recorder->name ?? '-' }}
Enregistré le
{{ $feeding->created_at->format('d/m/Y H:i') }}
Retour
Modifier
@csrf @method('DELETE')
@endsection