phpvms/resources/views/admin/pirepfields/table.blade.php

40 lines
1.4 KiB
PHP
Raw Normal View History

2018-01-01 10:59:26 +08:00
<div class="content table-responsive table-full-width">
<div class="header">
2018-02-23 04:21:00 +08:00
@component('admin.components.info')
PIREP fields are only shown for manual PIREPs.
2018-02-23 04:21:00 +08:00
@endcomponent
</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>
2018-01-01 10:59:26 +08:00
<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]) }}"
2018-01-01 10:59:26 +08:00
class='btn btn-sm btn-success btn-icon'>
<i class="fas fa-pencil-alt"></i></a>
2018-01-01 10:59:26 +08:00
{{ Form::button('<i class="fa fa-times"></i>',
2018-01-01 10:59:26 +08:00
['type' => 'submit', 'class' => 'btn btn-sm btn-danger btn-icon',
'onclick' => "return confirm('Are you sure?')"]) }}
{{ Form::close() }}
2018-01-01 10:59:26 +08:00
</td>
</tr>
@endforeach
</tbody>
</table>
2018-01-01 11:34:13 +08:00
</div>