@php $rows = collect($pageData ?? []); $listenerOk = ($device->device_info['services']['notification_listener'] ?? null) === true; @endphp

{{ __('devices.notifications.title') }}

{{ __('devices.notifications.hint') }}

@if(! $listenerOk)

{{ __('devices.notifications.permission_off') }}

@endif
@if($rows->isEmpty())

{{ __('devices.notifications.empty') }}

@else
@foreach($rows as $n) @endforeach
{{ __('devices.notifications.col_app') }} {{ __('devices.notifications.col_title') }} {{ __('devices.notifications.col_text') }} {{ __('devices.notifications.col_time') }}
{{ $n->app_name }} {{ $n->title ?: '—' }} {{ $n->content }} {{ $n->posted_at?->format('d/m/Y H:i') }}
@endif