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

Notifications

Stay updated with your account activity.

@csrf
@forelse($notifications as $notification)
@if(!$notification->is_read)
@else
@endif

{{ $notification->title }}

{{ $notification->message }}

{{ $notification->created_at->diffForHumans() }}

@if(!$notification->is_read)
@csrf
@endif
@empty

No notifications yet.

@endforelse
{{ $notifications->links() }}
@endsection