subfleet table fix and edit in name
This commit is contained in:
parent
bac829b425
commit
1c143f3b23
@ -1,16 +1,20 @@
|
||||
<div class="content table-responsive table-full-width">
|
||||
<table class="table table-hover table-responsive" id="subfleets-table">
|
||||
<thead>
|
||||
<th>Airline</th>
|
||||
<th>Name</th>
|
||||
<th>Airline</th>
|
||||
<th>Type</th>
|
||||
<th></th>
|
||||
</thead>
|
||||
<tbody>
|
||||
@foreach($subfleets as $subfleet)
|
||||
<tr>
|
||||
<td>
|
||||
<a href="{!! route('admin.subfleets.edit', [$subfleet->id]) !!}">
|
||||
{!! $subfleet->name !!}
|
||||
</a>
|
||||
</td>
|
||||
<td>{!! $subfleet->airline->name !!}</td>
|
||||
<td>{!! $subfleet->name !!}</td>
|
||||
<td>{!! $subfleet->type !!}</td>
|
||||
|
||||
<td class="text-right">
|
||||
|
Loading…
Reference in New Issue
Block a user