@extends('themes.basic.business.layouts.app') @section('container', 'dashboard-container-lg') @section('title', d_trans('Notifications')) @section('header_title', d_trans('Notifications')) @section('breadcrumbs', Breadcrumbs::render('business.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('themes.basic.business.partials.empty', ['empty_classes' => 'empty-lg'])
@endif @endsection