2017-06-22 09:18:01 +08:00
|
|
|
<div id="ranks_table_wrapper">
|
2017-08-24 03:59:15 +08:00
|
|
|
<table class="table table-hover table-responsive">
|
2017-06-22 09:18:01 +08:00
|
|
|
<thead>
|
|
|
|
<th>Name</th>
|
2018-02-28 04:29:45 +08:00
|
|
|
<th class="text-center">Hours</th>
|
2017-08-22 02:59:59 +08:00
|
|
|
<th class="text-center">Auto Approve Acars</th>
|
|
|
|
<th class="text-center">Auto Approve Manual</th>
|
|
|
|
<th class="text-center">Auto Promote</th>
|
2017-08-24 03:59:15 +08:00
|
|
|
<th></th>
|
2017-06-22 09:18:01 +08:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
@foreach($ranks as $rank)
|
|
|
|
<tr>
|
2018-02-13 00:26:27 +08:00
|
|
|
<td><a href="{!! route('admin.ranks.edit', [$rank->id]) !!}">{!! $rank->name !!}</a></td>
|
2018-02-28 04:29:45 +08:00
|
|
|
<td class="text-center">{!! $rank->hours !!}</td>
|
2017-08-22 02:59:59 +08:00
|
|
|
<td class="text-center">
|
2018-02-28 04:30:31 +08:00
|
|
|
@if($rank->auto_approve_acars)
|
2017-08-22 02:59:59 +08:00
|
|
|
<span class="label label-success">Yes</span>
|
|
|
|
@else
|
|
|
|
<span class="label label-default">No</span>
|
|
|
|
@endif
|
2017-07-14 11:10:46 +08:00
|
|
|
</td>
|
2017-08-22 02:59:59 +08:00
|
|
|
<td class="text-center">
|
2018-02-28 04:30:31 +08:00
|
|
|
@if($rank->auto_approve_manual)
|
2017-08-22 02:59:59 +08:00
|
|
|
<span class="label label-success">Yes</span>
|
|
|
|
@else
|
|
|
|
<span class="label label-default">No</span>
|
|
|
|
@endif
|
2017-07-14 11:10:46 +08:00
|
|
|
</td>
|
2017-08-22 02:59:59 +08:00
|
|
|
<td class="text-center">
|
2018-02-28 04:30:31 +08:00
|
|
|
@if($rank->auto_promote)
|
2017-08-22 02:59:59 +08:00
|
|
|
<span class="label label-success">Yes</span>
|
|
|
|
@else
|
|
|
|
<span class="label label-default">No</span>
|
|
|
|
@endif
|
2017-07-14 11:10:46 +08:00
|
|
|
</td>
|
2017-08-22 02:59:59 +08:00
|
|
|
<td class="text-right">
|
2017-06-22 09:18:01 +08:00
|
|
|
{!! Form::open(['route' => ['admin.ranks.destroy', $rank->id], 'method' => 'delete']) !!}
|
2018-02-23 03:28:12 +08:00
|
|
|
<a href="{!! route('admin.ranks.edit', [$rank->id]) !!}" class='btn btn-sm btn-success btn-icon'>
|
|
|
|
<i class="fas fa-pencil-alt"></i></a>
|
2017-08-22 02:59:59 +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?')"]) !!}
|
2017-06-22 09:18:01 +08:00
|
|
|
{!! Form::close() !!}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
@endforeach
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</div>
|