{{ __('user.Notifications List') }}

@if($notifications->count() > 0)
    @foreach($notifications as $notification)
  • {{ $notification->type ?? __('user.Notification') }}
    {{ $notification->details ?? '' }}
    {{ $notification->created_at->diffForHumans() }}
  • @endforeach
@else

{{ __('user.No notifications found.') }}

@endif