2018-01-01 10:59:26 +08:00
|
|
|
<div class="content table-responsive table-full-width">
|
2018-01-24 05:48:30 +08:00
|
|
|
|
|
|
|
<div class="header">
|
2018-02-23 04:21:00 +08:00
|
|
|
@component('admin.components.info')
|
2018-01-24 05:48:30 +08:00
|
|
|
PIREP fields are only shown for manual PIREPs.
|
2018-02-23 04:21:00 +08:00
|
|
|
@endcomponent
|
2018-01-24 05:48:30 +08:00
|
|
|
</div>
|
|
|
|
|
2018-01-01 10:59:26 +08:00
|
|
|
<table class="table table-hover table-responsive" id="pirepFields-table">
|
|
|
|
<thead>
|
|
|
|
<th>Name</th>
|
2018-01-22 02:13:49 +08:00
|
|
|
<th style="text-align: center;">Required</th>
|
2018-01-01 10:59:26 +08:00
|
|
|
<th></th>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@foreach($fields as $field)
|
|
|
|
<tr>
|
|
|
|
<td>{!! $field->name !!}</td>
|
|
|
|
<td style="text-align: center;">
|
|
|
|
@if($field->required === true)
|
2018-01-22 02:13:49 +08:00
|
|
|
<span class="label label-success">Required</span>
|
2018-01-01 10:59:26 +08:00
|
|
|
@endif
|
|
|
|
</td>
|
|
|
|
<td class="text-right">
|
|
|
|
{!! Form::open(['route' => ['admin.pirepfields.destroy', $field->id], 'method' => 'delete']) !!}
|
|
|
|
<a href="{!! route('admin.pirepfields.edit', [$field->id]) !!}"
|
|
|
|
class='btn btn-sm btn-success btn-icon'>
|
2018-02-23 03:28:12 +08:00
|
|
|
<i class="fas fa-pencil-alt"></i></a>
|
2018-01-01 10:59:26 +08:00
|
|
|
|
|
|
|
{!! Form::button('<i class="fa fa-times"></i>',
|
|
|
|
['type' => 'submit', 'class' => 'btn btn-sm btn-danger btn-icon',
|
|
|
|
'onclick' => "return confirm('Are you sure?')"]) !!}
|
|
|
|
{!! Form::close() !!}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2018-01-01 11:34:13 +08:00
|
|
|
</div>
|