logo logo logo logo
{{-- أزرار الاختصارات السريعة --}}
@can('Sales products')
{{ __('home.detail_screen') }}
@endcan @can('manufacturing')
{{ __('home.manufacturin_screen') }}
@endcan @can('sales return')
{{ __('home.salesـreturned') }}
@endcan @can('Purchases products')
{{ __('home.purchases') }}
@endcan
  • {{ LaravelLocalization::getCurrentLocaleName() == 'اللغة العربية' ? 'العربية' : LaravelLocalization::getCurrentLocaleName() }}
      @foreach (LaravelLocalization::getSupportedLocales() as $localeCode => $properties)
    • {{ $properties['native'] }}
    • @endforeach
@php $products = App\Models\products::where('branchs_id', auth()->user()->branchs_id)->get(); $products_low_quantity = []; foreach ($products as $product) { if ($product->numberofpice <= $product->minmum_quantity_stock_alart) { $products_low_quantity[] = $product; } } @endphp
@if(count($products_low_quantity) > 0)
{{ count($products_low_quantity) > 10 ? '+10' : count($products_low_quantity) }}
@endif
{{__('home.notification')}}
{{ count($products_low_quantity) }}
@if(count($products_low_quantity) > 0) @for ($x = 0; $x < min(4, count($products_low_quantity)); $x++)
{{ __('home.product_') }} : {{ $products_low_quantity[$x]->product_name }}
{{ __('home.quantity') }} : {{ $products_low_quantity[$x]->numberofpice }}
@endfor @else
لا توجد تنبيهات
@endif
{{ __('home.readAll') }}
{{ Auth::user()->name }}
{{ Auth::user()->email }}
{{ __('auth.setting') }} تسجيل خروج
@csrf