@if ($notifications->count() > 0) @foreach ($notifications as $key => $notification) @endforeach
@if ($notification->level == \Acelle\Model\Notification::LEVEL_WARNING) warning_amber @elseif ( false &&$notification->level == \Acelle\Model\Notification::LEVEL_ERROR) new_releases @else lightbulb @endif

{!! $notification->title !!}
{{ $notification->message }}

{{ $notification->created_at->diffForHumans() }}
{{ Auth::user()->admin->formatDateTime($notification->created_at, 'datetime_full') }}
@include('elements/_per_page_select', ["items" => $notifications]) @elseif (!empty(request()->keyword) || !empty(request()->filters["type"]))
message {{ trans('messages.no_search_result') }}
@else
message {{ trans('messages.no_action_notifications') }}
@endif