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

33 lines
1.3 KiB
PHP
Raw Normal View History

2017-08-24 03:59:15 +08:00
<table class="table table-hover table-responsive" id="airlines-table">
2017-06-09 09:02:52 +08:00
<thead>
<th>Code</th>
2017-07-23 12:03:39 +08:00
<th>IATA</th>
2017-06-09 09:02:52 +08:00
<th>Name</th>
<th class="text-center">Active</th>
2017-08-24 03:59:15 +08:00
<th></th>
2017-06-09 09:02:52 +08:00
</thead>
<tbody>
2017-06-09 09:46:50 +08:00
@foreach($airlines as $al)
2017-06-09 09:02:52 +08:00
<tr>
2017-06-09 09:46:50 +08:00
<td>{!! $al->code !!}</td>
2017-07-23 12:03:39 +08:00
<td>{!! $al->iata !!}</td>
2017-06-09 09:46:50 +08:00
<td>{!! $al->name !!}</td>
<td class="text-center">
@if($al->active == 1)
<span class="label label-success">Active</span>
@else
<span class="label label-default">Inactive</span>
@endif
</td>
<td class="text-right">
2017-06-20 00:50:25 +08:00
{!! Form::open(['route' => ['admin.airlines.destroy', $al->id], 'method' => 'delete']) !!}
<a href="{!! route('admin.airlines.edit', [$al->id]) !!}"
class='btn btn-sm btn-success btn-icon'><i class="fa fa-pencil-square-o"></i></a>
{!! 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-09 09:02:52 +08:00
{!! Form::close() !!}
</td>
</tr>
@endforeach
</tbody>
2017-06-09 09:46:50 +08:00
</table>