@extends(getTemplate() .'.panel.layouts.panel_layout')
@section('content')
@if(!empty($notifications) and !$notifications->isEmpty())
@foreach($notifications as $notification)
@if(empty($notification->notificationStatus))
@endif
{{ $notification->title }}
{{ dateTimeFormat($notification->created_at,'j M Y | H:i') }}
{!! truncate($notification->message, 150, true) !!}
@endforeach
{{ $notifications->appends(request()->input())->links('vendor.pagination.panel') }}
@else
@include(getTemplate() . '.includes.no-result',[
'file_name' => 'webinar.png',
'title' => trans('panel.notification_no_result'),
'hint' => nl2br(trans('panel.notification_no_result_hint')),
])
@endif
@endsection
@push('scripts_bottom')
@endpush