aboutsummaryrefslogtreecommitdiff
path: root/resources/views/components/weather.blade.php
diff options
context:
space:
mode:
authorRoscoeDeWah <roscoe@wah.moe>2025-01-16 13:42:14 +0000
committerRoscoeDeWah <roscoe@wah.moe>2025-01-16 13:42:14 +0000
commitda992ff1b780bf687ba2093d36c2def943296ec5 (patch)
tree28d4c656da316becfaf8ba81b7541d03abb188ae /resources/views/components/weather.blade.php
parenta349858a7d55e66b51b56063af5306d3a5652bb9 (diff)
Remove unused stuff
Diffstat (limited to 'resources/views/components/weather.blade.php')
-rw-r--r--resources/views/components/weather.blade.php15
1 files changed, 0 insertions, 15 deletions
diff --git a/resources/views/components/weather.blade.php b/resources/views/components/weather.blade.php
deleted file mode 100644
index 879f1cb..0000000
--- a/resources/views/components/weather.blade.php
+++ /dev/null
@@ -1,15 +0,0 @@
-<p><strong>Weather Conditions:</strong></p>
-<hr style="margin: 4px 0">
-@if($conditions == null)
- <p>Data Unavailable</p>
-@else
- <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>
-@endif