fix(#163): Home Assistant recipe template
Some checks are pending
tests / ci (push) Waiting to run

This commit is contained in:
Benjamin Nussbaum 2026-01-16 21:01:30 +01:00
parent 20a183cfee
commit eb767fa6d0

View file

@ -1,5 +1,5 @@
@php @php
$weatherEntity = collect($data)->first(function($entity) { $weatherEntity = collect(Arr::get($data, 'data'))->first(function($entity) {
return $entity['entity_id'] === 'weather.forecast_home'; return $entity['entity_id'] === 'weather.forecast_home';
}); });
@endphp @endphp