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

Renewal Notifications

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