{{ __('inventory::modules.reports.batch_waste.title') }}

{{-- Filters --}}
{{-- Summary --}}
@lang('inventory::modules.batchRecipe.quantity')
{{ number_format($summary['total_quantity'] ?? 0, 2) }}
@lang('inventory::modules.reports.cogs.total_cost')
{{ currency_format($summary['total_cost'] ?? 0, restaurant()->currency_id) }}
{{-- Table --}}
@forelse($rows as $stock) @empty @endforelse
@lang('inventory::modules.batchRecipe.batchName') @lang('inventory::modules.batchRecipe.quantityAvailable') @lang('inventory::modules.batchRecipe.expiry') @lang('inventory::modules.reports.cogs.total_cost')
{{ $stock->batchRecipe->name ?? '-' }}
{{ $stock->batchRecipe->yieldUnit->name ?? '' }}
{{ number_format($stock->quantity, 2) }} {{ $stock->batchRecipe->yieldUnit->symbol ?? '' }} {{ optional($stock->expiry_date)->format('Y-m-d') }} {{ currency_format($stock->total_cost, restaurant()->currency_id) }}
@lang('inventory::modules.batchRecipe.noBatchStockFound')
{{ $rows->links() }}