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

@if($lowStockItems->isEmpty())

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

@else
@foreach($lowStockItems as $item) @endforeach
{{ __('dashboard.name') }} {{ __('dashboard.stock') }} {{ __('dashboard.low_stock_threshold') }} {{ __('dashboard.unit') }}
{{ $item->name }} {{ $item->stock }} {{ $item->low_stock_threshold }} {{ $item->unit }}
@endif