diff --git a/app/Http/Controllers/metarController.php b/app/Http/Controllers/metarController.php index 5333398..f345532 100644 --- a/app/Http/Controllers/metarController.php +++ b/app/Http/Controllers/metarController.php @@ -286,7 +286,7 @@ public function metar($icao) $clouds = $this->clouds($metar->metar) ?? "None"; $station = $this->station($metar->metar) ?? "None"; $times = $this->time($metar->metar) ?? "None"; - $tempo = $this->tempo($metar->metar) ?? "None"; + $tempo = $this->tempo($metar->metar); $r = [ @@ -317,7 +317,7 @@ public function metar($icao) 'visibility' => "Not Found", 'flight_rules' => "Not Found", "QNH" => "Not Found", - "tempo" => "Not Found", + "tempo" => null, "wind" => [ "wind" => "Not Found", "direction" => "Not Found", diff --git a/resources/views/myoline/atc.blade.php b/resources/views/myoline/atc.blade.php index a61b4bf..c5e0cce 100644 --- a/resources/views/myoline/atc.blade.php +++ b/resources/views/myoline/atc.blade.php @@ -77,39 +77,8 @@
-
-