{{ $low_quantity_products->count() }}

{{ __('Notifications') }}


@foreach ($user->unreadNotifications as $key => $notification)
{{ $notification->data['message'] }}
@endforeach

{{ __('Stock Alert') }}

    @forelse($low_quantity_products as $product)
  1. {{ __('Product') }}: "{{ $product->name }}" {{ $product->quantity }}/{{ $product->stock_alert }} {{ __('product exceed alert quantity !') }}
  2. @empty
  3. {{ __('No notifications') }}
  4. @endforelse
    +