#32 moved fares to subfleets
This commit is contained in:
84
resources/views/admin/subfleets/fares.blade.php
Normal file
84
resources/views/admin/subfleets/fares.blade.php
Normal file
@@ -0,0 +1,84 @@
|
||||
<div id="aircraft_fares_wrapper" class="dataTables_wrapper form-inline dt-bootstrap">
|
||||
<table id="aircraft_fares"
|
||||
class="table table-bordered table-hover dataTable"
|
||||
role="grid" aria-describedby="aircraft_fares_info">
|
||||
<thead>
|
||||
<tr role="row">
|
||||
<th class="sorting" tabindex="0" aria-controls="aircraft_fares"
|
||||
rowspan="1" colspan="1"
|
||||
aria-label="name: activate to sort column ascending">
|
||||
name
|
||||
</th>
|
||||
<th class="sorting_asc" tabindex="0"
|
||||
aria-controls="aircraft_fares" rowspan="1" colspan="1"
|
||||
aria-sort="ascending"
|
||||
aria-label="code: activate to sort column descending">
|
||||
code
|
||||
</th>
|
||||
<th class="sorting" tabindex="0" aria-controls="aircraft_fares"
|
||||
rowspan="1" colspan="1"
|
||||
aria-label="capacity: activate to sort column ascending">
|
||||
capacity (default)
|
||||
</th>
|
||||
<th class="sorting" tabindex="0" aria-controls="aircraft_fares"
|
||||
rowspan="1" colspan="1"
|
||||
aria-label="price: activate to sort column ascending">
|
||||
price (default)
|
||||
</th>
|
||||
<th class="sorting" tabindex="0" aria-controls="aircraft_fares"
|
||||
rowspan="1" colspan="1"
|
||||
aria-label="cost: activate to sort column ascending">
|
||||
cost (default)
|
||||
</th>
|
||||
<th></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($subfleet->fares as $atf)
|
||||
<tr role="row" class="@if ($loop->iteration%2) even @else odd @endif">
|
||||
<td class="sorting_1">{!! $atf->name !!}</td>
|
||||
<td>{!! $atf->code !!}</td>
|
||||
<td><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><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><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%;">
|
||||
<div class='btn-group'>
|
||||
{!! Form::open(['url' => '/admin/subfleets/'.$subfleet->id.'/fares', 'method' => 'delete', 'class' => 'rm_fare']) !!}
|
||||
{!! Form::hidden('fare_id', $atf->id) !!}
|
||||
{!! Form::button('<i class="glyphicon glyphicon-trash"></i>',
|
||||
['type' => 'submit',
|
||||
'class' => 'btn btn-danger btn-s']) !!}
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</tbody>
|
||||
</table>
|
||||
<hr />
|
||||
<div class="row">
|
||||
<div class="col-xs-12">
|
||||
<div class="input-group input-group-lg pull-right">
|
||||
{!! Form::open(['url' => '/admin/subfleets/'.$subfleet->id.'/fares',
|
||||
'method' => 'post',
|
||||
'class' => 'rm_fare form-inline'
|
||||
])
|
||||
!!}
|
||||
{!! Form::select('fare_id', $avail_fares, null, [
|
||||
'placeholder' => 'Select Fare',
|
||||
'class' => 'ac-fare-dropdown form-control input-lg',
|
||||
|
||||
])
|
||||
!!}
|
||||
{!! Form::button('<i class="glyphicon glyphicon-plus"></i> add',
|
||||
['type' => 'submit',
|
||||
'class' => 'btn btn-success btn-s']) !!}
|
||||
{!! Form::close() !!}
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user