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

Notifications

@if(Auth::user()->unreadNotifications()->count() > 0)
@csrf
@endif
@if (session('success')) @endif @if($notifications->isEmpty())

You have no notifications.

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