2019-09-17 03:17:51 +08:00
|
|
|
<div class="table-responsive">
|
|
|
|
<table class="table table-sm table-hover table-striped">
|
2020-02-02 02:05:56 +08:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{{ trans_choice('common.flight', 1) }}</th>
|
|
|
|
<th>@lang('common.departure')</th>
|
|
|
|
<th>@lang('common.arrival')</th>
|
|
|
|
<th>@lang('common.aircraft')</th>
|
|
|
|
<th class="text-center">@lang('flights.flighttime')</th>
|
|
|
|
<th class="text-center">@lang('common.status')</th>
|
|
|
|
<th>@lang('pireps.submitted')</th>
|
|
|
|
<th></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
2018-02-04 08:18:09 +08:00
|
|
|
|
2020-02-02 02:05:56 +08:00
|
|
|
@foreach($pireps as $pirep)
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="{{ route('frontend.pireps.show', [
|
2019-09-17 03:17:51 +08:00
|
|
|
$pirep->id]) }}">{{ $pirep->airline->code }}{{ $pirep->ident }}</a>
|
2020-02-02 02:05:56 +08:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if($pirep->dpt_airport){{ $pirep->dpt_airport->name }}@endif
|
2019-09-17 03:17:51 +08:00
|
|
|
(<a href="{{route('frontend.airports.show', [$pirep->dpt_airport_id])}}">{{$pirep->dpt_airport_id}}</a>)
|
2020-02-02 02:05:56 +08:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if($pirep->arr_airport){{ $pirep->arr_airport->name }}@endif
|
2019-09-17 03:17:51 +08:00
|
|
|
(<a href="{{route('frontend.airports.show', [$pirep->arr_airport_id])}}">{{$pirep->arr_airport_id}}</a>)
|
2020-02-02 02:05:56 +08:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if($pirep->aircraft)
|
|
|
|
{{ $pirep->aircraft->name }}
|
|
|
|
@else
|
|
|
|
-
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td class="text-center">
|
|
|
|
{{ (new \App\Support\Units\Time($pirep->flight_time)) }}
|
|
|
|
</td>
|
|
|
|
<td class="text-center">
|
|
|
|
@if($pirep->state === PirepState::PENDING)
|
|
|
|
<div class="badge badge-warning">
|
|
|
|
@elseif($pirep->state === PirepState::ACCEPTED)
|
|
|
|
<div class="badge badge-success">
|
2019-09-17 03:17:51 +08:00
|
|
|
@elseif($pirep->state === PirepState::REJECTED)
|
2020-02-02 02:05:56 +08:00
|
|
|
<div class="badge badge-danger">
|
|
|
|
@else
|
|
|
|
<div class="badge badge-info">
|
|
|
|
@endif
|
|
|
|
{{ PirepState::label($pirep->state) }}</div>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if(filled($pirep->submitted_at))
|
|
|
|
{{ $pirep->submitted_at->diffForHumans() }}
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
@if(!$pirep->read_only)
|
|
|
|
<a href="{{ route('frontend.pireps.edit', [$pirep->id]) }}"
|
|
|
|
class="btn btn-info btn-sm"
|
|
|
|
style="z-index: 9999"
|
|
|
|
title="@lang('common.edit')">
|
|
|
|
@lang('common.edit')
|
|
|
|
</a>
|
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
2018-04-10 11:04:59 +08:00
|
|
|
|
2020-02-02 02:05:56 +08:00
|
|
|
</tbody>
|
2019-09-17 03:17:51 +08:00
|
|
|
</table>
|
|
|
|
</div>
|