aboutsummaryrefslogtreecommitdiff
path: root/resources/views/components/weather.blade.php
diff options
context:
space:
mode:
authorfloppydiskette <git@diskfloppy.me>2024-08-08 15:35:48 +0100
committerfloppydiskette <git@diskfloppy.me>2024-08-08 15:35:48 +0100
commit74bca7ac803aeea3d5091344b99520687e3a3bd1 (patch)
tree8a63a2341303daac4ac621f8f4962a81d684e88a /resources/views/components/weather.blade.php
parent9900446d9590024c34f55a45055776a396fb694e (diff)
parent14d3ed966bbafbcb01182df26fbbe1d5a211f4c2 (diff)
Merge branch 'redesign'
Diffstat (limited to 'resources/views/components/weather.blade.php')
-rw-r--r--resources/views/components/weather.blade.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/resources/views/components/weather.blade.php b/resources/views/components/weather.blade.php
new file mode 100644
index 0000000..b4dfcaa
--- /dev/null
+++ b/resources/views/components/weather.blade.php
@@ -0,0 +1,11 @@
+<p><strong>Weather Conditions:</strong></p>
+<hr style="margin: 4px 0">
+<p><strong>Temperature:</strong> {{ round(($conditions[0]["temp"] - 32) * (5/9), 1) }} degC</p>
+<p><strong>Rain:</strong> {{ ($conditions[0]["rain_rate_last"] * 0.2) }}mm/hr ({{ $conditions[0]["rainfall_daily"] }}mm today)</p>
+@if ($conditions[0]["wind_speed_last"] != 0)
+ <p><strong>Wind:</strong> {{ round($conditions[0]["wind_speed_last"], 1) }}mph ({{ $conditions[0]["wind_dir_last"] }} deg)</p>
+@else
+ <p><strong>Wind:</strong> 0mph</p>
+@endif
+<p><strong>Humidity:</strong> {{ round($conditions[0]["hum"], 1) }}%</p>
+<p><strong>Pressure:</strong> {{ round($conditions[2]["bar_sea_level"], 1) }} inHg</p>