{{-- warnings — only what needs attention --}} @if (count($warnings) > 0) {{ count($warnings) }}
@foreach ($warnings as $w)
$w['level'] === 'offline', 'text-warning bg-warning/10' => $w['level'] !== 'offline', ])>
{{ $w['title'] }}
@if ($w['meta'])
{{ $w['meta'] }}
@endif
@if ($w['link']) @endif
@endforeach
@else

{{ __('dashboard.all_clear_title') }}

{{ __('dashboard.all_clear_body') }}

@endif {{-- home summary --}}
{{-- rooms + devices --}}

{{ __('dashboard.rooms_title') }}

@foreach ($rooms as $room)
@foreach ($room->devices as $device)
{{ $device->name }} {{ $device->model }}
@foreach ($device->entities as $entity) @endforeach
@endforeach
@endforeach