@extends('layouts.app')
@section('title', __('messages.milk_production'))
@section('breadcrumb')
{{ __('messages.production') }}
/ {{ __('messages.milk_production') }}
@endsection
@section('content')
| {{ __('messages.cattle') }} | {{ __('messages.date') }} | {{ __('messages.quantity_l') }} | {{ __('messages.notes') }} | {{ __('messages.actions') }} |
|---|---|---|---|---|
| {{ $milk->cattle->tag_number }} | {{ $milk->record_date?->format('M d, Y') ?? '—' }} | {{ number_format($milk->quantity_liters, 2) }} | {{ Str::limit($milk->notes, 30) }} |
|
| {{ __('messages.no_milk_production_records') }} | ||||