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

{{ auth()->user()->unreadNotifications()->count() }} unread

@if(auth()->user()->unreadNotifications()->exists())
@csrf
@endif
{{ $notifications->links() }}
@endsection