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">
|
2017-12-24 01:17:29 +08:00
|
|
|
<h5>
|
2018-03-13 06:58:12 +08:00
|
|
|
<a class="text-c" href="{{ route('frontend.pireps.show', [$pirep->id]) }}">
|
|
|
|
{{ $pirep->ident }}
|
2017-12-24 01:17:29 +08:00
|
|
|
</a>
|
2018-04-01 04:57:30 +08:00
|
|
|
-
|
|
|
|
<a href="{{route('frontend.airports.show', ['id' => $pirep->dpt_airport_id])}}">
|
|
|
|
{{ $pirep->dpt_airport_id }}</a>
|
|
|
|
|
|
|
|
<span class="description"> to </span>
|
|
|
|
|
|
|
|
<a href="{{route('frontend.airports.show', ['id' => $pirep->arr_airport_id])}}">
|
|
|
|
{{ $pirep->arr_airport_id }}</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-01-04 22:26:07 +08:00
|
|
|
<table width="100%">
|
|
|
|
<tr>
|
|
|
|
<td nowrap><span class="title">Flight Time </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>
|
|
|
|
<td nowrap><span class="title">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>
|
|
|
|
<td nowrap><span class="title">Flight Level </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>
|
|
|
|
<td nowrap><span class="title">Filed On: </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-02-25 06:05:00 +08:00
|
|
|
<p style="text-align: right;">
|
2018-03-13 06:58:12 +08:00
|
|
|
<a href="{{ route('frontend.pireps.edit', ['id'=>$pirep->id]) }}">edit</a>
|
2018-02-25 06:05:00 +08:00
|
|
|
</p>
|
2017-12-24 01:17:29 +08:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|