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

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

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

@endif