@extends('admin.admin_master') @section('admin')

Notifications

View your recent notifications

All Notifications

List of your notifications

@if(session('message')) @endif @if(session('error')) @endif @if($notifications->count())
@foreach($notifications as $key => $notification) @endforeach
# Message Date Status Action
{{ $key + 1 }} {{ $notification->data['message'] ?? 'Notification' }} {{ $notification->created_at->diffForHumans() }} @if(is_null($notification->read_at)) Unread @else Read @endif @if(is_null($notification->read_at))
@csrf
@else @endif
{{ $notifications->links() }}
@else

You have no notifications.

@endif
@endsection