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

My Notifications

@if(Auth::user()->unreadNotifications->count() > 0)
@csrf
@endif
@include('admin.partials.alerts') {{-- Or your frontend alerts partial --}} @if($notifications->isEmpty())

You have no notifications.

@else
{{ $notifications->links() }}
@endif
@endsection