phpvms/resources/views/layouts/default/airports/show.blade.php
2018-05-21 11:55:40 -05:00

109 lines
3.8 KiB
PHP

@extends('app')
@section('title', $airport->full_name)
@section('content')
<div class="row" style="margin-bottom: 30px;">
<div class="col-12">
<h2>{{ $airport->full_name }}</h2>
</div>
{{-- Show the weather widget in one column --}}
<div class="col-5">
{{ Widget::Weather([
'icao' => $airport->icao,
]) }}
</div>
{{-- Show the airspace map in the other column --}}
<div class="col-7">
{{ Widget::AirspaceMap([
'width' => '100%',
'height' => '400px',
'lat' => $airport->lat,
'lon' => $airport->lon,
]) }}
</div>
</div>
<div class="row">
{{-- There are files uploaded and a user is logged in--}}
@if(count($airport->files) > 0 && Auth::check())
<div class="col-12">
<h3>{{ trans_choice('common.download', 2) }}</h3>
@include('downloads.table', ['files' => $airport->files])
</div>
@endif
</div>
<div class="row">
<div class="col-6">
<h5>@lang('flights.inbound')</h5>
@if(!$inbound_flights)
<div class="jumbotron text-center">
@lang('flights.none')
</div>
@else
<table class="table table-striped table-condensed">
<thead>
<tr>
<th class="text-left">@lang('airports.ident')</th>
<th class="text-left">@lang('common.from')</th>
<th>@lang('common.departure')</th>
<th>@lang('common.arrival')</th>
</tr>
</thead>
@foreach($inbound_flights as $flight)
<tr>
<td class="text-left">
<a href="{{ route('frontend.flights.show', [$flight->id]) }}">
{{ $flight->ident }}
</a>
</td>
<td class="text-left">{{ $flight->dpt_airport->name }}
(<a href="{{route('frontend.airports.show',
['id'=>$flight->dpt_airport->icao])}}">{{$flight->dpt_airport->icao}}</a>)
</td>
<td>{{ $flight->dpt_time }}</td>
<td>{{ $flight->arr_time }}</td>
</tr>
@endforeach
</table>
@endif
</div>
<div class="col-6">
<h5>@lang('flights.outbound')</h5>
@if(!$outbound_flights)
<div class="jumbotron text-center">
@lang('flights.none')
</div>
@else
<table class="table table-striped table-condensed">
<thead>
<tr>
<th class="text-left">@lang('airports.ident')</th>
<th class="text-left">@lang('common.to')</th>
<th>@lang('common.departure')</th>
<th>@lang('common.arrival')</th>
</tr>
</thead>
@foreach($outbound_flights as $flight)
<tr>
<td class="text-left">
<a href="{{ route('frontend.flights.show', [$flight->id]) }}">
{{ $flight->ident }}
</a>
</td>
<td class="text-left">{{ $flight->arr_airport->name }}
(<a href="{{route('frontend.airports.show',
['id'=>$flight->arr_airport->icao])}}">{{$flight->arr_airport->icao}}</a>)
</td>
<td>{{ $flight->dpt_time }}</td>
<td>{{ $flight->arr_time }}</td>
</tr>
@endforeach
</table>
@endif
</div>
</div>
@endsection