phpvms/resources/views/admin/ranks/subfleets.blade.php

66 lines
2.7 KiB
PHP
Raw Normal View History

2017-11-23 10:03:49 +08:00
<div id="rank_subfleet_wrapper" class="dataTables_wrapper form-inline dt-bootstrap col-lg-12">
@if(count($rank->subfleets) === 0)
@include('admin.common.none_added', ['type' => 'subfleets'])
@endif
2017-07-02 10:06:55 +08:00
<table class="table table-responsive" id="subfleets-table">
2018-02-27 09:23:22 +08:00
@if(count($rank->subfleets))
2017-07-02 10:06:55 +08:00
<thead>
<th>Airline</th>
<th>Name</th>
<th style="text-align: center;">ACARS Pay</th>
<th style="text-align: center;">Manual Pay</th>
2017-07-02 10:06:55 +08:00
<th style="text-align: center;">Actions</th>
</thead>
2018-02-27 09:23:22 +08:00
@endif
2017-07-02 10:06:55 +08:00
<tbody>
@foreach($rank->subfleets as $sf)
<tr>
<td>{{ $sf->airline->name }}</td>
<td>{{ $sf->name }} ({{ $sf->type }})</td>
<td style="text-align: center;">
<a href="#" data-pk="{{ $sf->id }}"
data-name="acars_pay">{{ $sf->pivot->acars_pay }}</a>
</td>
<td style="text-align: center;">
<a href="#" data-pk="{{ $sf->id }}"
data-name="manual_pay">{{ $sf->pivot->manual_pay }}</a>
</td>
2017-07-02 10:06:55 +08:00
<td style="width: 10%; text-align: center;" class="form-inline">
{{ Form::open(['url' => '/admin/ranks/'.$rank->id.'/subfleets', 'method' => 'delete', 'class' => 'pjax_form']) }}
{{ Form::hidden('subfleet_id', $sf->id) }}
2017-07-02 10:06:55 +08:00
<div class='btn-group'>
{{ Form::button('<i class="fa fa-times"></i>',
2017-07-02 10:06:55 +08:00
['type' => 'submit',
2017-11-23 10:03:49 +08:00
'class' => 'btn btn-sm btn-danger btn-icon'])
}}
2017-07-02 10:06:55 +08:00
</div>
{{ Form::close() }}
2017-07-02 10:06:55 +08:00
</td>
</tr>
@endforeach
</tbody>
</table>
<hr />
<div class="row">
2017-11-23 10:03:49 +08:00
<div class="col-lg-12">
2017-07-02 10:06:55 +08:00
<div class="input-group input-group-lg pull-right">
{{ Form::open(['url' => url('/admin/ranks/'.$rank->id.'/subfleets'),
2017-07-02 10:06:55 +08:00
'method' => 'post',
'class' => 'pjax_form form-inline'
])
}}
{{ Form::select('subfleet_id', $avail_subfleets, null, [
2017-07-02 10:06:55 +08:00
'placeholder' => 'Select Subfleet',
2018-01-04 05:27:56 +08:00
'class' => 'select2 form-control input-lg'])
}}
{{ Form::button('<i class="fa fa-plus"></i> Add',
2017-07-02 10:06:55 +08:00
['type' => 'submit',
'class' => 'btn btn-success btn-small']) }}
{{ Form::close() }}
2017-07-02 10:06:55 +08:00
</div>
</div>
</div>
</div>