@extends('backend.layouts.grid') @section('title', admin_trans('Notifications (' . $unreadNotificationsCount . ')')) @section('container', 'container-max-lg') @section('content')
@forelse ($notifications as $notification) @if ($notification->link)
{{ $notification->title }}

{{ $notification->created_at->diffforhumans() }}

@if (!$notification->status)
@endif
@else
{{ $notification->title }}

{{ $notification->created_at->diffforhumans() }}

@if (!$notification->status)
@endif
@endif @empty
@include('backend.partials.empty', ['class' => 'empty-lg'])
@endforelse
{{ $notifications->links() }} @endsection