• {{Auth::user()->unreadNotifications()->count()}}
    • {{Auth::user()->unreadNotifications->count()}}

      {{trans('app notifications')}}
    • @foreach(Auth::user()->unreadNotifications as $notification)
      {{$notification->data['title']}}
      {{Str::limit($notification->data['message'])}}
      {{$notification->created_at}}
      @endforeach
    • {{trans('read all notifications')}}
  • {{strtoupper(Auth::user()->name)}} {{trans('logout')}}