Adding Ship Class column
This commit is contained in:
@ -60,6 +60,7 @@
|
||||
<th scope="col">@sortablelink('shipName', 'Ship Name')</th>
|
||||
<th scope="col">@sortablelink('shipType', 'Ship Type')</th>
|
||||
<th scope="col">@sortablelink('shipOwner', 'Ship Owner')</th>
|
||||
<th scope="col">@sortablelink('shipClass', 'Ship Class')</th>
|
||||
<th scope="col">Actions</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@ -70,6 +71,7 @@
|
||||
<td>{{ $ship->shipName }}</td>
|
||||
<td>{{ $ship->shipType }}</td>
|
||||
<td>{{ $ship->shipOwner }}</td>
|
||||
<td>{{ $ship->shipClass }}</td>
|
||||
<td>
|
||||
<button type="button" class="btn bi bi-wrench" data-target="#editShip-{{ $ship->id }}" data-toggle="modal"><x-bi-tools/></button>
|
||||
<button type="button" class="btn" data-target="#deleteShip-{{ $ship->id }}" data-toggle="modal"><x-bi-trash/></button>
|
||||
|
Reference in New Issue
Block a user