2020-12-06 09:27:03 +08:00
|
|
|
<div id="pirep_{{ $pirep->id }}_container" class="card border-blue-bottom pirep_card_container">
|
|
|
|
<div class="card-block" style="min-height: 0px">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-2 text-center">
|
|
|
|
<h5><a class="text-c" href="{{ route('admin.pireps.edit', [$pirep->id]) }}">{{ $pirep->airline->code }}{{ $pirep->ident }}</a></h5>
|
|
|
|
<div id="pirep_{{ $pirep->id }}_status_container">
|
|
|
|
@php
|
|
|
|
$PirepStateClass = "badge badge-info" ;
|
|
|
|
if($pirep->state === PirepState::PENDING ) { $PirepStateClass = "badge badge-warning" ; }
|
|
|
|
if($pirep->state === PirepState::ACCEPTED ) { $PirepStateClass = "badge badge-success" ; }
|
|
|
|
if($pirep->state === PirepState::REJECTED ) { $PirepStateClass = "badge badge-danger" ; }
|
|
|
|
@endphp
|
|
|
|
<div class="{{ $PirepStateClass }}">{{ PirepState::label($pirep->state) }}</div>
|
2017-12-03 14:48:33 +08:00
|
|
|
</div>
|
2020-12-06 09:27:03 +08:00
|
|
|
</div>
|
|
|
|
<div class="col-sm-10">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-sm-6">
|
|
|
|
<div>
|
|
|
|
<span class="description">
|
|
|
|
<b>DEP</b> {{ $pirep->dpt_airport_id }}
|
|
|
|
<b>ARR</b> {{ $pirep->arr_airport_id }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<span class="description">
|
|
|
|
<b>Flight Time</b> @minutestotime($pirep->flight_time)
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
@if($pirep->aircraft)
|
|
|
|
<div>
|
|
|
|
<span class="description">
|
|
|
|
<b>Aircraft</b> {{ $pirep->aircraft->registration }} ({{ $pirep->aircraft->name }})
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
@if(filled($pirep->level))
|
|
|
|
<div>
|
|
|
|
<span class="description">
|
|
|
|
<b>Flight Level</b> {{ $pirep->level }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
@endif
|
|
|
|
<div>
|
|
|
|
<span class="description">
|
|
|
|
<b>Filed Using</b> {{ PirepSource::label($pirep->source) }}
|
|
|
|
@if(filled($pirep->source_name)) ({{ $pirep->source_name }}) @endif
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div>
|
|
|
|
<span class="description">
|
|
|
|
<b>File Date</b> {{ show_datetime($pirep->created_at) }}
|
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<div id="pirep_{{ $pirep->id }}_actionbar" class="pull-right">
|
|
|
|
@include('admin.pireps.actions', ['pirep' => $pirep, 'on_edit_page' => false])
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2020-10-26 22:18:00 +08:00
|
|
|
</div>
|