@extends('layouts.admin') @section('title', 'Notification Center') @section('content')

All Notifications

@forelse($notifications as $notification) @empty @endforelse
Type Title Message Center Time
{{ $notification->type }} {{ $notification->title }} {{ $notification->message }} {{ $notification->center_id ?: '—' }} {{ $notification->created_at->diffForHumans() }}
No notifications yet.
{{ $notifications->links() }}
@endsection