@lang("inventory::modules.batchRecipe.batchInventory")

@lang("inventory::modules.batchRecipe.batchInventoryDescription")

@if(user_can('Produce Batch')) @lang("inventory::modules.batchRecipe.produceBatch") @endif
@if($search || $batchRecipeFilter || $statusFilter) @endif
@forelse($batchStocks as $stock) @empty @endforelse
@lang("inventory::modules.batchRecipe.batchName") @lang("inventory::modules.batchRecipe.quantityAvailable") @lang("inventory::modules.batchRecipe.createdOn") @lang("inventory::modules.batchRecipe.expiry") @lang("inventory::modules.batchRecipe.costPerUnit") @lang("inventory::modules.batchRecipe.status")
{{ $stock->batchRecipe->name }}
{{ number_format($stock->remaining_quantity, 2) }} {{ $stock->batchRecipe->yieldUnit->symbol }}
{{ $stock->created_at->format('Y-m-d H:i') }}
{{ $stock->expiry_date ? $stock->expiry_date->format('Y-m-d') : '-' }}
{{ currency_format($stock->cost_per_unit, restaurant()->currency_id) }}
@lang("inventory::modules.batchRecipe.{$stock->status}")
@lang("inventory::modules.batchRecipe.noBatchStockFound")
{{ $batchStocks->links() }}
@lang("inventory::modules.batchRecipe.produceBatch")