@extends('layouts.app')
@section('title', 'Détails distribution')
@section('breadcrumb')
Tableau de bord
Distributions
Détails
@endsection
@section('content')
- 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') }}
@endsection