{{ __('Hello') }}{{ $user ? ' ' . $user->name : '' }},

{{ __('Some warehouse items are low in stock.') }} {{ __('Please click the link below to review') }}

@if ($single)

{{ __($data->name) }} ({{ $data->code }})

{{ ($data->alert / ($data->stock_count ?: 1)) * 100 }}%

{{ __choice('x items are low in stock.', ['x' => $data->alert]) }}

@else
@foreach ($data as $warehouse)

{{ __($warehouse->name) }} ({{ $warehouse->code }})

{{ ($warehouse->alert / ($warehouse->stock_count ?: 1)) * 100 }}%

{{ __choice('x items are low in stock.', ['x' => $warehouse->alert]) }}

@endforeach
@endif