{{ trans('messages.notifications') }}
{{ trans('messages.all_logs') }}
@if (Auth::user()->admin && Auth::user()->admin->notifications()->count() == 0)
running_with_errors
{{ trans('messages.no_activity_logs') }}
@endif @foreach (Auth::user()->admin->notifications()->take(20)->get() as $notification)
@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 }}
restore
{{ $notification->created_at->diffForHumans() }}
{{ $notification->message }}
@endforeach
@if (Auth::user()->admin->notifications()->count() > 0)
{{ trans('messages.all_logs') }}
@endif