diff --git a/resources/views/layouts/default/flights/simbrief_briefing.blade.php b/resources/views/layouts/default/flights/simbrief_briefing.blade.php index bd9f7fb1..28902ff4 100644 --- a/resources/views/layouts/default/flights/simbrief_briefing.blade.php +++ b/resources/views/layouts/default/flights/simbrief_briefing.blade.php @@ -124,22 +124,29 @@
-
-  Weather -
+
 Weather

Departure METAR

-

- {{ $simbrief->xml->weather->orig_metar }}

+

{{ $simbrief->xml->weather->orig_metar }}

+
+

Departure TAF

+

{{ $simbrief->xml->weather->orig_taf }}

-
- -

Arrival METAR

-

- {{ $simbrief->xml->weather->dest_metar }}

+

Destination METAR

+

{{ $simbrief->xml->weather->dest_metar }}

+
+

Destination TAF

+

{{ $simbrief->xml->weather->dest_taf }}

+
+
+

Alternate METAR

+

{{ $simbrief->xml->weather->altn_metar }}

+
+

Alternate TAF

+

{{ $simbrief->xml->weather->altn_taf }}

@@ -169,12 +176,64 @@
+ +
+
 Prefile ATC Flight Plan
+
+
+
+ @php + $str = $simbrief->xml->aircraft->equip ; + $wc = stripos($str,"-"); + $tr = stripos($str,"/"); + $wakecat = substr($str,0,$wc); + $equipment = substr($str,$wc+1,$tr-2); + $transponder = substr($str,$tr+1); + @endphp +
+ + + + + + + + + + + + + + + + + + + + + + + +
+
+
+
+ + + + + +
+
+
+
+
 OFP
-
+
{!! $simbrief->xml->text->plan_html !!}