logo-sm logo-dark logo-light
@php $hasUnread = auth()->user()->unreadNotifications->count() > 0; @endphp
Notifications
@forelse(auth()->user()->unreadNotifications as $notification)
{{ $notification->data['title'] ?? 'Notification' }}
{{ $notification->data['body'] ?? '' }}
{{ $notification->created_at->diffForHumans() }}
@empty
No new notifications
@endforelse
View More..
Profile
@csrf {{ __('Log Out') }}