@extends('admin.layouts.app') @section('container', 'dashboard-container-md') @section('title', d_trans('Notifications')) @section('header_title', d_trans('Notifications')) @section('content') @if ($notifications->count() > 0)
@foreach ($notifications as $notification) @if ($notification->link)
{{ $notification->title }}

{{ $notification->title }}

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

@else
{{ $notification->title }}

{{ $notification->title }}

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

@endif @endforeach
{{ $notifications->links() }} @else
@include('admin.partials.empty', ['empty_classes' => 'empty-lg'])
@endif @endsection