@if(count(Auth::user()->unreadNotifications) >5 )
5+
@else
{{count(Auth::user()->unreadNotifications)}}
@endif
Notifications Center
@foreach(Auth::user()->unreadNotifications as $notification)
{{$notification->created_at->format('F d, Y h:i A')}}
{{$notification->data['title']}}
@if($loop->index+1==5) @php break; @endphp @endif @endforeach
Show All Notifications