@extends('layouts.app')
@section('title', 'Détails pesée')
@section('breadcrumb')
Tableau de bord
Pesées
Détails
@endsection
@section('content')
- Lot
- {{ $weightRecord->lot->code ?? '-' }}
- Animal
- {{ $weightRecord->animal->tag_number ?? 'Lot entier' }}
- Poids
- {{ number_format($weightRecord->weight, 3) }} kg
- Date
- {{ \Carbon\Carbon::parse($weightRecord->date)->format('d/m/Y') }}
- Enregistré le
- {{ $weightRecord->created_at->format('d/m/Y H:i') }}
@endsection