@extends('admin.layouts.admin') @section('content')
{{ __('Mark All as Read') }}
@forelse ($all_notifications as $notification)
notifications
{{ $notification->message }}
{{ toDiffForHumans($notification->created_at) }}
@empty
{{ __('No notifications available') }}
@endforelse
{{ __('Showing') }} {{ $all_notifications->firstItem() }} {{ __('to') }} {{ $all_notifications->lastItem() }} {{ __('of') }} {{ $all_notifications->total() }} {{ __('entries') }}
{{ $all_notifications->appends(request()->query())->links() }}
@endsection