@extends('admin.layouts.grid') @section('title', translate('Notifications')) @section('container', 'container-max-lg') @section('content')
@forelse ($notifications as $notification) @if ($notification->link) isLinkTypeExternal() ? 'target=_blank' : '' }} class="notification-item {{ !$notification->status ? 'unread' : '' }} d-flex justify-content-between align-items-center">
{{ $notification->title }}
{{ $notification->title }}

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

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

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

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