@extends('layouts.admin') @section('content')

All Notifications

Create Notification
Clear
@forelse($notifications as $notification) @empty @endforelse
User Title Type Status Sent At Actions
{{ $notification->user->name }} {{ $notification->title }} {{ $notification->type ?? '—' }} {{ ucfirst($notification->status) }} {{ $notification->sent_at ? $notification->sent_at->format('M d, Y H:i') : '—' }}
View Edit
@csrf @method('DELETE')
No notifications found
{{ $notifications->links() }}
@endsection