50 lines
2.2 KiB
PHP
50 lines
2.2 KiB
PHP
<table class="table table-hover table-responsive" id="aircrafts-table">
|
|
<thead>
|
|
<th>Name</th>
|
|
<th style="text-align: center;">Registration</th>
|
|
<th>Subfleet</th>
|
|
<th style="text-align: center;">Location</th>
|
|
<th style="text-align: center;">Hours</th>
|
|
<th style="text-align: center;">Active</th>
|
|
<th style="text-align: right;"></th>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($aircraft as $ac)
|
|
<tr>
|
|
<td><a href="{{ route('admin.aircraft.edit', [$ac->id]) }}">{{ $ac->name }}</a></td>
|
|
<td style="text-align: center;">{{ $ac->registration }}</td>
|
|
<td>
|
|
@if($ac->subfleet_id && $ac->subfleet)
|
|
<a href="{{ route('admin.subfleets.edit', [$ac->subfleet_id]) }}">
|
|
{{ $ac->subfleet->name }}
|
|
</a>
|
|
@else
|
|
-
|
|
@endif
|
|
</td>
|
|
<td style="text-align: center;">{{ $ac->airport_id }}</td>
|
|
<td style="text-align: center;">
|
|
{{ Utils::minutesToTimeString($ac->flight_hours) }}
|
|
</td>
|
|
<td style="text-align: center;">
|
|
@if($ac->status == \App\Models\Enums\AircraftStatus::ACTIVE)
|
|
<span class="label label-success">{{ \App\Models\Enums\AircraftStatus::label($ac->status) }}</span>
|
|
@else
|
|
<span class="label label-default">
|
|
{{ \App\Models\Enums\AircraftStatus::label($ac->status) }}
|
|
</span>
|
|
@endif
|
|
</td>
|
|
<td style="width: 10%; text-align: right;">
|
|
{{ 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="fas fa-pencil-alt"></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>
|