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

{{-- Filters --}}
@lang('inventory::modules.reports.batch_production.description')
{{-- Summary --}}
@lang('inventory::modules.batchRecipe.batchRecipes')
{{ number_format($summary['total_productions'] ?? 0) }}
@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($productions as $production) @empty @endforelse
@lang('inventory::modules.batchRecipe.batchName') @lang('inventory::modules.batchRecipe.defaultBatchSize') @lang('inventory::modules.batchRecipe.createdOn') @lang('inventory::modules.reports.cogs.total_cost')
{{ $production->batchRecipe->name }}
{{ $production->batchRecipe->yieldUnit->name ?? '' }}
{{ number_format($production->quantity, 2) }} {{ $production->batchRecipe->yieldUnit->symbol ?? '' }}
{{ $production->created_at->timezone(timezone())->format('Y-m-d H:i') }}
{{ $production->producedBy->name ?? '' }}
{{ currency_format($production->total_cost, restaurant()->currency_id) }}
@lang('inventory::modules.batchRecipe.noBatchStockFound')
{{ $productions->links() }}