phpvms/resources/views/layouts/default/flights/show.blade.php

77 lines
2.5 KiB
PHP
Raw Normal View History

@extends('app')
@section('title', 'Flight '.$flight->ident)
2017-08-03 04:12:26 +08:00
@section('content')
<div class="row">
2018-04-07 06:10:45 +08:00
<div class="col-8">
<div class="row">
<div class="col-12">
<h2>{{ $flight->ident }}</h2>
</div>
</div>
<div class="row">
<div class="col-12">
<table class="table">
<tr>
<td>Departure</td>
<td>
{{ $flight->dpt_airport->name }}
(<a href="{{route('frontend.airports.show', [
'id' => $flight->dpt_airport->icao
])}}">{{$flight->dpt_airport->icao}}</a>)
@ {{ $flight->dpt_time }}
</td>
</tr>
2018-04-07 06:10:45 +08:00
<tr>
<td>Arrival</td>
<td>
{{ $flight->arr_airport->name }}
(<a href="{{route('frontend.airports.show', [
'id' => $flight->arr_airport->icao
])}}">{{$flight->arr_airport->icao}}</a>)
@ {{ $flight->arr_time }}</td>
</tr>
@if($flight->alt_airport_id)
<tr>
<td>Alternate Airport</td>
<td>
{{ $flight->alt_airport->full_name }}
</td>
</tr>
@endif
2018-04-07 06:10:45 +08:00
<tr>
<td>Route</td>
<td>{{ $flight->route }}</td>
</tr>
2018-04-07 06:10:45 +08:00
@if(filled($flight->notes))
<tr>
<td>Notes</td>
<td>{{ $flight->notes }}</td>
</tr>
@endif
</table>
</div>
</div>
<div class="row">
<div class="col-12">
@include('flights.map')
</div>
</div>
</div>
2018-04-07 06:10:45 +08:00
<div class="col-4">
<h5>{{$flight->dpt_airport_id}} METAR</h5>
{{ Widget::Weather([
'icao' => $flight->dpt_airport_id,
]) }}
<br />
<h5>{{$flight->arr_airport_id}} METAR</h5>
{{ Widget::Weather([
'icao' => $flight->arr_airport_id,
]) }}
</div>
</div>
2017-08-03 04:12:26 +08:00
@endsection