2017-12-24 01:17:29 +08:00
|
|
|
<div class="card border-blue-bottom">
|
|
|
|
<div class="card-block" style="min-height: 0px">
|
|
|
|
<div class="row">
|
2018-04-01 04:57:30 +08:00
|
|
|
<div class="col-12">
|
2018-04-09 05:00:22 +08:00
|
|
|
<p class="float-right">
|
2018-07-13 10:37:18 +08:00
|
|
|
<a href="{{ route('frontend.pireps.edit', ['id' => $pirep->id]) }}" class="btn btn-sm btn-info">@lang('common.edit')</a>
|
2018-04-09 05:00:22 +08:00
|
|
|
</p>
|
2017-12-24 01:17:29 +08:00
|
|
|
<h5>
|
2018-04-04 01:06:06 +08:00
|
|
|
<a href="{{ route('frontend.pireps.show', [$pirep->id]) }}">
|
2018-04-10 11:04:59 +08:00
|
|
|
{{ $pirep->airline->code }}{{ $pirep->ident }}</a>
|
2018-04-01 04:57:30 +08:00
|
|
|
-
|
2018-04-04 08:21:42 +08:00
|
|
|
{{ $pirep->dpt_airport->name }}
|
|
|
|
(<a href="{{route('frontend.airports.show', [
|
|
|
|
'id' => $pirep->dpt_airport->icao
|
|
|
|
])}}">{{$pirep->dpt_airport->icao}}</a>)
|
|
|
|
<span class="description">to</span>
|
|
|
|
{{ $pirep->arr_airport->name }}
|
|
|
|
(<a href="{{route('frontend.airports.show', [
|
|
|
|
'id' => $pirep->arr_airport->icao
|
|
|
|
])}}">{{$pirep->arr_airport->icao}}</a>)
|
2017-12-24 01:17:29 +08:00
|
|
|
</h5>
|
2018-04-01 04:57:30 +08:00
|
|
|
</div>
|
|
|
|
<div class="col-sm-2 text-center">
|
2017-12-24 01:17:29 +08:00
|
|
|
<div>
|
2018-01-02 00:49:26 +08:00
|
|
|
@if($pirep->state === PirepState::PENDING)
|
2017-12-27 04:54:28 +08:00
|
|
|
<div class="badge badge-warning">
|
2018-01-02 00:49:26 +08:00
|
|
|
@elseif($pirep->state === PirepState::ACCEPTED)
|
2017-12-27 04:54:28 +08:00
|
|
|
<div class="badge badge-success">
|
2018-01-02 00:49:26 +08:00
|
|
|
@elseif($pirep->state === PirepState::REJECTED)
|
2017-12-27 04:54:28 +08:00
|
|
|
<div class="badge badge-danger">
|
2017-12-24 01:17:29 +08:00
|
|
|
@else
|
2017-12-27 04:54:28 +08:00
|
|
|
<div class="badge badge-info">
|
2017-12-24 01:17:29 +08:00
|
|
|
@endif
|
2018-03-13 06:58:12 +08:00
|
|
|
{{ PirepState::label($pirep->state) }}</div>
|
2017-12-24 01:17:29 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<div class="row">
|
2017-12-24 01:58:17 +08:00
|
|
|
<div class="col-sm-6">
|
2018-04-04 08:21:42 +08:00
|
|
|
<table class="table-condensed" width="100%">
|
2018-01-04 22:26:07 +08:00
|
|
|
<tr>
|
2018-05-19 03:45:52 +08:00
|
|
|
<td nowrap><span class="title">@lang('pireps.flighttime') </span></td>
|
2018-03-13 06:58:12 +08:00
|
|
|
<td>{{ Utils::minutesToTimeString($pirep->flight_time) }}</td>
|
2018-01-04 22:26:07 +08:00
|
|
|
</tr>
|
|
|
|
<tr>
|
2018-05-19 03:18:12 +08:00
|
|
|
<td nowrap><span class="title">@lang('common.aircraft') </span></td>
|
2018-03-13 06:58:12 +08:00
|
|
|
<td>{{ $pirep->aircraft->name }}
|
|
|
|
({{ $pirep->aircraft->registration }})</td>
|
2018-01-04 22:26:07 +08:00
|
|
|
</tr>
|
|
|
|
@if($pirep->level)
|
|
|
|
<tr>
|
2018-07-18 21:33:09 +08:00
|
|
|
<td nowrap><span class="title">@lang('pireps.flightlevel') </span></td>
|
2018-03-13 06:58:12 +08:00
|
|
|
<td>{{ $pirep->level }}</td>
|
2018-01-04 22:26:07 +08:00
|
|
|
</tr>
|
|
|
|
@endif
|
|
|
|
<tr>
|
2018-05-19 03:45:52 +08:00
|
|
|
<td nowrap><span class="title">@lang('pireps.filedon'): </span></td>
|
2018-03-13 06:58:12 +08:00
|
|
|
<td>{{ show_datetime($pirep->created_at) }}</td>
|
2018-01-04 22:26:07 +08:00
|
|
|
</tr>
|
|
|
|
</table>
|
2017-12-24 01:17:29 +08:00
|
|
|
</div>
|
2017-12-24 01:58:17 +08:00
|
|
|
<div class="col-sm-6">
|
2018-04-09 05:00:22 +08:00
|
|
|
|
2017-12-24 01:17:29 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|