@if(\Auth::user()->notifications()->count() > 0 )
@foreach(\Auth::user()->notifications()->orderBy('id','desc')->take(10)->get() as $notification)
@if(isset($notification->data['content']))
unread()) style="background-color: #fff6e6" @endif>
{{ $notification->data['content'] }}
{{ \Modules\Platform\Core\Helper\UserHelper::formatUserDateTime($notification->created_at) }}
@endif
@endforeach
@else
@lang('notifications::notifications.no_new_notifications')
@endif