@extends('web.layouts.layout') @section('content')

{{ $title }}

@if($notifications?->count()) @foreach($notifications as $notification)

{{ $notification->translated_date_format }} {{-- $notification->created_time_formatted --}}

{{ $notification->descriptions[0]->title ?? $notification->title ?? null }}

{{ $notification->descriptions[0]->message ?? $notification->message ?? null }}

@endforeach @else
{{ __('general.no_results') }}
@endif
@endsection @push('stack_scripts') @endpush