• @if(count($user->unreadNotifications)>0)
    @lang('app.newNotifications') @lang('app.markRead')
    @endif
  • @forelse ($user->unreadNotifications as $notification) @if(view()->exists('notifications.member.'.\Illuminate\Support\Str::snake(class_basename($notification->type)))) @include('notifications.member.'.\Illuminate\Support\Str::snake(class_basename($notification->type))) @endif @foreach ($worksuitePlugins as $item) @if(View::exists(strtolower($item).'::notifications.member.'.\Illuminate\Support\Str::snake(class_basename($notification->type)))) @include(strtolower($item).'::notifications.member.'.\Illuminate\Support\Str::snake(class_basename($notification->type))) @endif @endforeach @empty
  • @lang('messages.noNotification')
  • @endforelse