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

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

@if (!$notification->status)
@endif @if ($notification->link)
@else
@endif @empty
@include('backend.includes.empty')
@endforelse
{{ $notifications->links() }} @endsection