@extends('layouts.app', ['title' => 'Notifications']) @section('content')

Notifications

@foreach ($notifications as $notification)
{{ $notification->title }}
{{ $notification->channel }} • {{ $notification->status }}
{{ $notification->sent_at?->diffForHumans() }}
{{ $notification->message }}
@endforeach
{{ $notifications->links() }}
@endsection