@extends('layouts.app') @section('title', __('messages.milk_production')) @section('breadcrumb') {{ __('messages.production') }} / {{ __('messages.milk_production') }} @endsection @section('content')
{{ __('messages.total_production') }}

{{ number_format($milkStats['total'] ?? 0, 1) }} L

{{ __('messages.this_month') }}

{{ number_format($milkStats['month'] ?? 0, 1) }} L

{{ __('messages.daily_average') }}

{{ number_format($milkStats['average'] ?? 0, 1) }} L

{{ __('messages.records') }}

{{ $milkProductions->count() }}

@forelse($milkProductions as $milk) @empty @endforelse
{{ __('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') }}
{{-- Modal --}} @endsection