@foreach($all_notifications as $notification) @endforeach @if($all_notifications->isEmpty()) @endif
{{ __('ID') }} {{ __('Message') }} {{ __('Type') }} {{ __('Status') }}
{{ $notification->id }} {{ $notification->message }} {{ str_replace('_', ' ', $notification->type) }} @if($notification->is_read === 'unread') {{ __('Unread') }} @else {{ __('Read') }} @endif
{{ __('No notifications found.') }}
@include('backend.layout.partials.paginator', ['paginator' => $all_notifications, 'label' => __('notifications')])