@yield('styles')
@php $stockSetting = config('settings.stock_limit'); $getProductPrice = App\ProductPrice::where('qty',$stockSetting)->get(); @endphp
{{ count($getProductPrice) }}
@foreach($getProductPrice as $productStock)
{{$productStock->product->name_en}}
({{ $productStock->qty }})
@endforeach
@if(count(config('panel.available_languages', [])) > 1)
{{ strtoupper(app()->getLocale()) }}
@foreach(config('panel.available_languages') as $langLocale => $langName)
{{ strtoupper($langLocale) }} ({{ $langName }})
@endforeach
@endif
{{ trans('global.logout') }}
@include('partials.menu')
@yield('content')
{{ csrf_field() }}
@yield('scripts') @include('common.save-timezone')