diff options
author | Frankie B <git@diskfloppy.me> | 2023-07-03 15:29:54 +0100 |
---|---|---|
committer | Frankie B <git@diskfloppy.me> | 2023-07-03 15:29:54 +0100 |
commit | 0f265f43f27efb3cf69c141d2012e673d34603d0 (patch) | |
tree | bec7e05bdca04752e142206f00dc04cd558dd326 /resources/views/components | |
parent | 3c711a3be52a7a80a4fe2783def65c9abf7dd309 (diff) |
Update to work with API again
Diffstat (limited to 'resources/views/components')
-rw-r--r-- | resources/views/components/weather.blade.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/views/components/weather.blade.php b/resources/views/components/weather.blade.php index a5a041f..29f925d 100644 --- a/resources/views/components/weather.blade.php +++ b/resources/views/components/weather.blade.php @@ -11,7 +11,7 @@ function degreesToCompassDirection($degrees) { $data = json_decode(file_get_contents($api_root.'/weather')); $updated = gmdate('H:i Y-m-d', $data->updated); -$data = $data->data; +$data = $data->current; @endphp <h1>Local Weather <small>(Last Update: {{ $updated }})</small></h1> |