{{ __('Feed Consumption') }}

@if($farms->isEmpty())
You do not have farm access yet. Ask admin to assign at least one farm.
@endif
@csrf

If batch or feed is empty, first create them in Batches and Feed Items.

@foreach($consumptions as $row) @endforeach
DateFarmBatchFeedQty
{{ optional($row->consumed_on)->format('Y-m-d') }} {{ $row->batch?->farm?->name }} {{ $row->batch?->name }} {{ $row->feedItem?->name }} {{ number_format($row->quantity, 3) }}
Edit
@csrf @method('PATCH')
@csrf @method('DELETE')
{{ $consumptions->links() }}