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

74 lines
3.3 KiB
PHP
Raw Normal View History

2017-08-03 04:12:26 +08:00
@foreach($flights as $flight)
2017-08-10 13:08:38 +08:00
<div class="card border-blue-bottom">
<div class="card-block" style="min-height: 0">
2017-08-03 04:12:26 +08:00
<div class="row">
<div class="col-sm-9">
2017-08-03 12:22:51 +08:00
<h5>
<a class="text-c" href="{{ route('frontend.flights.show', [$flight->id]) }}">
{{ $flight->ident }}
2017-08-03 12:22:51 +08:00
</a>
</h5>
2017-08-03 04:12:26 +08:00
</div>
<div class="col-sm-3 text-right">
{{-- NOTE:
Don't remove the "save_flight" class, or the x-id attribute.
It will break the AJAX to save/delete
"x-saved-class" is the class to add/remove if the bid exists or not
If you change it, remember to change it in the in-array line as well
--}}
@if (!setting('pilots.only_flights_from_current') || $flight->dpt_airport->icao == Auth::user()->current_airport->icao)
<button class="btn btn-round btn-icon btn-icon-mini
{{ in_array($flight->id, $saved, true) ? 'btn-info':'' }}
save_flight"
x-id="{{ $flight->id }}"
x-saved-class="btn-info"
type="button"
2018-05-18 06:03:30 +08:00
title="@lang('frontend.flights.addremovebid')"
>
<i class="fas fa-map-marker"></i>
2017-08-03 12:22:51 +08:00
</button>
@endif
2017-08-03 12:22:51 +08:00
</div>
</div>
<div class="row">
<div class="col-sm-5">
2018-04-04 08:21:42 +08:00
{{--<table class="table-condensed"></table>--}}
2018-05-18 06:03:30 +08:00
<span class="title">{{ strtoupper(trans('frontend.flights.dep')) }}&nbsp;</span>
2018-04-04 08:21:42 +08:00
{{ $flight->dpt_airport->name }}
(<a href="{{route('frontend.airports.show', [
'id' => $flight->dpt_airport->icao
])}}">{{$flight->dpt_airport->icao}}</a>)
@if($flight->dpt_time), {{ $flight->dpt_time }}@endif
<br />
2018-05-18 06:03:30 +08:00
<span class="title">{{ strtoupper(trans('frontend.flights.arr')) }}&nbsp;</span>
2018-04-04 08:21:42 +08:00
{{ $flight->arr_airport->name }}
(<a href="{{route('frontend.airports.show', [
'id' => $flight->arr_airport->icao
])}}">{{$flight->arr_airport->icao}}</a>)
@if($flight->arr_time), {{ $flight->arr_time }}@endif
<br />
@if($flight->distance)
2018-05-18 06:03:30 +08:00
<span class="title">{{ strtoupper(trans('frontend.global.distance')) }}&nbsp;</span>
{{ $flight->distance }} {{ setting('units.distance') }}
@endif
<br />
@if($flight->level)
2018-05-18 06:03:30 +08:00
<span class="title">{{ strtoupper(trans('frontend.flights.level')) }}&nbsp;</span>
{{ $flight->level }} {{ setting('units.altitude') }}
@endif
2017-08-03 12:22:51 +08:00
</div>
<div class="col-sm-7">
2017-08-03 12:22:51 +08:00
<div class="row">
2017-08-03 04:12:26 +08:00
<div class="col-sm-12">
2018-05-18 06:03:30 +08:00
<span class="title">{{ strtoupper(trans('frontend.global.route')) }}&nbsp;</span>
{{ $flight->route }}
2017-08-03 04:12:26 +08:00
</div>
</div>
</div>
</div>
</div>
</div>
@endforeach