{{ __('dashboard.id') }} {{ __('dashboard.name') }} {{ __('dashboard.stock') }} {{ __('dashboard.cost') }} {{ __('dashboard.unit') }} @forelse ($rows as $row) {{ $row->id }} {{ $row->name }} {{ $row->stock }} {{ $row->cost }} {{ $row->unit }}
@empty {{ __('dashboard.no_records_found') }} @endforelse
{{-- Stock Adjustment Modal --}} {{-- Stock Adjustment Modal --}} @if ($showAdjustmentModal)

{{ __('dashboard.adjust_stock') }}

@if($adjustmentIngredient && $adjustmentIngredient->purchase_unit && $adjustmentIngredient->conversion_factor > 0)
@if($adjustmentUnit === 'purchase')

{{ __('dashboard.conversion') }}: 1 {{ $adjustmentIngredient->purchase_unit }} = {{ $adjustmentIngredient->conversion_factor + 0 }} {{ $adjustmentIngredient->unit }}

@endif
@endif
{{ __('dashboard.cancel') }} {{ __('dashboard.save') }}
@endif