{{ $heading ??'' }}
{{ __('Dashboard') }}
@if(isset($title))
{{ $title ?? '' }}
@endif @if(isset($title1))
{{ $title1 ?? '' }}
@endif @if(isset($title2))
{{ $title2 ?? '' }}
@endif
@include('sweetalert::alert')
{{ __('Visit Site') }}
@if(Auth()->user()->role == "admin")
{{ Auth()->user()->unreadNotifications->where('type', 'App\Notifications\AdminOrder')->count() }}
{{ __('You have') }} {{ Auth()->user()->unreadNotifications->where('type', 'App\Notifications\AdminOrder')->count() }} {{ __('notifications') }}
@foreach(Auth()->user()->unreadNotifications->where('type', 'App\Notifications\AdminOrder') as $notification)
1
{{ $notification->data['data'] }}
@endforeach
{{ __('Clear all') }}
@endif @php $languages = App\Language::all(); @endphp
{{Session::has('changed_language') ? Session::get('changed_language') : ''}}
@if (isset($languages) && count($languages) > 0) @foreach ($languages as $language)
{{$language->name}} ({{$language->local}})
@endforeach @endif
@if(Auth()->User()['user_img'] != null && Auth()->User()['user_img'] !='' && @file_get_contents('images/user_img/'.Auth::user()['user_img']))
@else
@endif
{{ __('Hi') }} {{ Auth::user()->fname }}
{{ Auth::user()->fname }}
{{ __('My Profile') }}
{{ __('Logout') }}
@csrf
@yield('breadcum')