{{ translate('Notification History') }} @if ($notifications->count() > 0) @php $statusRoute = 'organization.notification.history.status'; $deleteRoute = 'organization.notification.history.delete'; @endphp
@foreach ($notifications as $notification) @endforeach
{{ translate('Title') }} {{ translate('Message') }} {{ translate('Date') }} {{ translate('View Status') }} {{ translate('Action') }}
{{ $notification?->data['title'] }}
{!! clean(isset($notification?->data['message']) ? $notification?->data['message'] : '') !!}
{{ $notification?->created_at?->diffForHumans(['options' => 0]) }}
{{ $notifications->links('portal::admin.pagination.paginate') }}
@else @endif