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

36 lines
1.3 KiB
PHP
Raw Normal View History

2017-11-23 01:52:02 +08:00
<div class="content table-responsive table-full-width">
2017-08-24 03:59:15 +08:00
<table class="table table-hover table-responsive" id="subfleets-table">
<thead>
<th>Name</th>
2018-02-21 11:30:36 +08:00
<th>Airline</th>
<th>Type</th>
2017-08-24 03:59:15 +08:00
<th></th>
</thead>
<tbody>
@foreach($subfleets as $subfleet)
<tr>
2018-02-21 11:30:36 +08:00
<td>
<a href="{!! route('admin.subfleets.edit', [$subfleet->id]) !!}">
{!! $subfleet->name !!}
</a>
</td>
<td>{!! $subfleet->airline->name !!}</td>
<td>{!! $subfleet->type !!}</td>
2017-08-24 03:59:15 +08:00
<td class="text-right">
{!! Form::open(['route' => ['admin.subfleets.destroy', $subfleet->id], 'method' => 'delete']) !!}
2017-11-23 01:52:02 +08:00
<a href="{!! route('admin.subfleets.edit', [$subfleet->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?')"]) !!}
{!! Form::close() !!}
</td>
</tr>
@endforeach
</tbody>
</table>
2017-11-23 01:52:02 +08:00
</div>