From eb767fa6d0fbe35449d88af5540ba49872185b48 Mon Sep 17 00:00:00 2001 From: Benjamin Nussbaum Date: Fri, 16 Jan 2026 21:01:30 +0100 Subject: [PATCH] fix(#163): Home Assistant recipe template --- resources/views/recipes/home-assistant.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/recipes/home-assistant.blade.php b/resources/views/recipes/home-assistant.blade.php index 686b33a..4e52a9e 100644 --- a/resources/views/recipes/home-assistant.blade.php +++ b/resources/views/recipes/home-assistant.blade.php @@ -1,5 +1,5 @@ @php - $weatherEntity = collect($data)->first(function($entity) { + $weatherEntity = collect(Arr::get($data, 'data'))->first(function($entity) { return $entity['entity_id'] === 'weather.forecast_home'; }); @endphp