@if (count($notifications))
    
        @foreach ($notifications as $n)
            @include('elements._notification', [
                'level' => $n->level,
                'title' => $n->title,
                'message' => strip_tags($n->message),
                'debug' => $n->debug,
                'params' => ['id' => $n->uid, 'data-type' => 'admin-notification']
            ])
        @endforeach
    
@endif