@extends('layouts.app') @section('title', 'Notifications') @section('content')

Notifications

@csrf
@if($notifications->isEmpty())

No notifications.

@else
@foreach($notifications as $notification)

{{ $notification->title }}

{{ $notification->message }}

{{ $notification->created_at->format('M d, Y H:i') }}

@if(!$notification->is_read)
@csrf
@endif
@endforeach
{{ $notifications->links() }}
@endif
@endsection