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

44 lines
1.9 KiB
PHP
Raw Normal View History

2017-08-24 03:59:15 +08:00
<table class="table table-hover table-responsive" id="aircrafts-table">
2017-06-09 09:37:51 +08:00
<thead>
<th>Subfleet</th>
2017-06-25 03:00:56 +08:00
<th>Name</th>
2018-01-04 02:41:01 +08:00
<th style="text-align: center;">ICAO</th>
<th style="text-align: center;">Registration</th>
<th style="text-align: center;">Active</th>
2017-08-24 03:59:15 +08:00
<th style="text-align: right;"></th>
2017-06-09 09:37:51 +08:00
</thead>
<tbody>
@foreach($aircraft as $ac)
<tr>
<td>
@if($ac->subfleet_id && $ac->subfleet)
<a href="{!! route('admin.subfleets.edit', [$ac->subfleet_id]) !!}">
{!! $ac->subfleet->name !!}
</a>
@else
-
@endif
</td>
2017-11-30 08:01:07 +08:00
<td><a href="{!! route('admin.aircraft.edit', [$ac->id]) !!}">{!! $ac->name !!}</a></td>
2018-01-04 02:41:01 +08:00
<td style="text-align: center;">{!! $ac->icao !!}</td>
<td style="text-align: center;">{!! $ac->registration !!}</td>
<td style="text-align: center;">
@if($ac->active == GenericState::ACTIVE)
<span class="label label-success">{!! GenericState::label($ac->active); !!}</span>
@else
<span class="label label-default">Inactive</span>
@endif
</td>
<td style="width: 10%; text-align: right;">
2017-06-09 09:37:51 +08:00
{!! Form::open(['route' => ['admin.aircraft.destroy', $ac->id], 'method' => 'delete']) !!}
<a href="{!! route('admin.aircraft.edit', [$ac->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:37:51 +08:00
{!! Form::close() !!}
</td>
</tr>
@endforeach
</tbody>
</table>