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

74 lines
3.3 KiB
PHP
Raw Normal View History

<div id="aircraft_fares_wrapper" class="dataTables_wrapper form-inline dt-bootstrap">
<div class="header">
<h3>fares</h3>
2018-02-23 04:21:00 +08:00
@component('admin.components.info')
Fares assigned to the current subfleet. These can be overridden,
otherwise, the value used is the default, which comes from the fare.
2018-02-23 04:21:00 +08:00
@endcomponent
</div>
<br />
2018-02-23 04:21:00 +08:00
<table id="aircraft_fares" class="table table-hover">
<thead>
<tr>
<th>name</th>
<th style="text-align: center;">code</th>
<th style="text-align: center;">capacity (default)</th>
<th style="text-align: center;">price (default)</th>
<th style="text-align: center;">cost (default)</th>
<th></th>
</tr>
</thead>
<tbody>
2017-06-25 00:09:27 +08:00
@foreach($subfleet->fares as $atf)
<tr>
<td class="sorting_1">{!! $atf->name !!}</td>
2017-11-23 02:00:31 +08:00
<td style="text-align: center;">{!! $atf->code !!}</td>
<td style="text-align: center;">
<a href="#" data-pk="{!! $atf->id !!}" data-name="capacity">{!! $atf->pivot->capacity !!}</a>
<span class="small background-color-grey-light">({!! $atf->capacity !!})</span>
</td>
<td style="text-align: center;">
<a href="#" data-pk="{!! $atf->id !!}" data-name="price">{!! $atf->pivot->price !!}</a>
<span class="small background-color-grey-light">({!! $atf->price !!})</span></td>
<td style="text-align: center;">
<a href="#" data-pk="{!! $atf->id !!}" data-name="cost">{!! $atf->pivot->cost !!}</a>
<span class="small background-color-grey-light">({!! $atf->cost!!})</span></td>
<td style="text-align: right; width:3%;">
2017-11-23 01:52:02 +08:00
{!! Form::open(['url' => '/admin/subfleets/'.$subfleet->id.'/fares',
'method' => 'delete',
'class' => 'rm_fare'
])
!!}
{!! Form::hidden('fare_id', $atf->id) !!}
{!! Form::button('<i class="fa fa-times"></i>',
['type' => 'submit',
'class' => 'btn btn-sm btn-danger btn-icon']) !!}
{!! Form::close() !!}
</td>
</tr>
@endforeach
</tbody>
</table>
<hr />
2017-06-14 03:01:06 +08:00
<div class="row">
2017-06-20 03:29:10 +08:00
<div class="col-xs-12">
<div class="text-right">
2017-06-25 00:09:27 +08:00
{!! Form::open(['url' => '/admin/subfleets/'.$subfleet->id.'/fares',
2017-06-14 03:01:06 +08:00
'method' => 'post',
'class' => 'rm_fare form-inline'
])
!!}
{!! Form::select('fare_id', $avail_fares, null, [
'placeholder' => 'Select Fare',
2017-11-23 02:00:31 +08:00
'class' => 'ac-fare-dropdown form-control input-lg select2',
2017-06-14 03:01:06 +08:00
])
!!}
{!! Form::button('<i class="glyphicon glyphicon-plus"></i> add',
['type' => 'submit',
'class' => 'btn btn-success btn-s']) !!}
{!! Form::close() !!}
</div>
</div>
</div>
</div>