☰
@auth
{{ __('frontstaticword.Notifications') }}
@foreach(Auth()->user()->unreadNotifications->where('type', 'App\Notifications\UserEnroll') as $notification)
-
@if($notification->data['image'] !== NULL )
@else
@endif
In {{ str_limit($notification->data['id'], $limit = 20, $end = '...') }}
{{ str_limit($notification->data['data'], $limit = 20, $end = '...') }}
@endforeach
@foreach(Auth()->user()->readNotifications->where('type', 'App\Notifications\UserEnroll') as $notification)
-
@if($notification->data['image'] !== NULL )
@else
@endif
In {{ str_limit($notification->data['id'], $limit = 20, $end = '...') }}
{{ str_limit($notification->data['data'], $limit = 20, $end = '...') }}
@endforeach
@endauth
×
@guest
@endguest
@auth
@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 }}
@endauth
@php
$categories = App\Categories::orderBy('position','ASC')->with(['subcategory','subcategory.childcategory'])->get();
@endphp
@foreach($categories->where('status', '1') as $cate)
@foreach($cate->subcategory as $sub)
@if($sub->status ==1)
@foreach($sub->childcategory as $child)
@if($child->status ==1)
@endif
@endforeach
@endif
@endforeach
@endforeach
@auth
@endauth
@guest
@endguest
@auth
-
{{ __('frontstaticword.Notifications') }}
@foreach(Auth()->user()->unreadNotifications->where('type', 'App\Notifications\UserEnroll') as $notification)
-
@if($notification->data['image'] !== NULL )
@else
@endif
In {{ str_limit($notification->data['id'], $limit = 20, $end = '...') }}
{{ str_limit($notification->data['data'], $limit = 20, $end = '...') }}
@endforeach
@foreach(Auth()->user()->readNotifications->where('type', 'App\Notifications\UserEnroll') as $notification)
-
@if($notification->data['image'] !== NULL )
@else
@endif
In {{ str_limit($notification->data['id'], $limit = 20, $end = '...') }}
{{ str_limit($notification->data['data'], $limit = 20, $end = '...') }}
@endforeach
@endauth
@include('instructormodel')