@@ -1,36 +1,36 @@
|
||||
<div class="content table-responsive table-full-width">
|
||||
<table class="table table-hover table-responsive" id="subfleets-table">
|
||||
<table class="table table-hover table-responsive" id="subfleets-table">
|
||||
<thead>
|
||||
<th>Name</th>
|
||||
<th>Airline</th>
|
||||
<th>Type</th>
|
||||
<th>Aircraft</th>
|
||||
<th></th>
|
||||
<th>Name</th>
|
||||
<th>Airline</th>
|
||||
<th>Type</th>
|
||||
<th>Aircraft</th>
|
||||
<th></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($subfleets as $subfleet)
|
||||
<tr>
|
||||
<td>
|
||||
<a href="{{ route('admin.aircraft.index') }}?subfleet={{$subfleet->id}}">
|
||||
{{ $subfleet->name }}
|
||||
</a>
|
||||
</td>
|
||||
<td>{{ optional($subfleet->airline)->name }}</td>
|
||||
<td>{{ $subfleet->type }}</td>
|
||||
<td>{{ $subfleet->aircraft->count() }}</td>
|
||||
<td class="text-right">
|
||||
{{ Form::open(['route' => ['admin.subfleets.destroy', $subfleet->id], 'method' => 'delete']) }}
|
||||
<tr>
|
||||
<td>
|
||||
<a href="{{ route('admin.aircraft.index') }}?subfleet={{$subfleet->id}}">
|
||||
{{ $subfleet->name }}
|
||||
</a>
|
||||
</td>
|
||||
<td>{{ optional($subfleet->airline)->name }}</td>
|
||||
<td>{{ $subfleet->type }}</td>
|
||||
<td>{{ $subfleet->aircraft->count() }}</td>
|
||||
<td class="text-right">
|
||||
{{ Form::open(['route' => ['admin.subfleets.destroy', $subfleet->id], 'method' => 'delete']) }}
|
||||
|
||||
<a href="{{ route('admin.subfleets.edit', [$subfleet->id]) }}" class='btn btn-sm btn-success btn-icon'>
|
||||
<i class="fas fa-pencil-alt"></i></a>
|
||||
<a href="{{ route('admin.subfleets.edit', [$subfleet->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>
|
||||
{{ 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>
|
||||
</table>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user