@extends('admin.layouts.grid') @section('title', admin_trans('Notifications')) @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('admin.partials.empty', ['size' => 180])
@endforelse
{{ $notifications->links() }} @endsection