Show Airline logo / icao to subfleets table (#1121)
Will show the subfleet airline logo or icao in the admin flight create page table. Co-authored-by: Nabeel S <nabeelio@users.noreply.github.com>
This commit is contained in:
parent
dbfaed0ecc
commit
7502c053bf
@ -13,6 +13,7 @@
|
|||||||
<table class="table table-responsive" id="aircrafts-table">
|
<table class="table table-responsive" id="aircrafts-table">
|
||||||
@if(count($flight->subfleets))
|
@if(count($flight->subfleets))
|
||||||
<thead>
|
<thead>
|
||||||
|
<th>Airline</th>
|
||||||
<th>Type</th>
|
<th>Type</th>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th style="text-align: center;">Actions</th>
|
<th style="text-align: center;">Actions</th>
|
||||||
@ -21,6 +22,12 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
@foreach($flight->subfleets as $sf)
|
@foreach($flight->subfleets as $sf)
|
||||||
<tr>
|
<tr>
|
||||||
|
<td>@if ($sf->airline->logo)
|
||||||
|
<img src="{{ $sf->airline->logo }}" style="max-width: 60px; width: 55%; height: auto;">
|
||||||
|
@else
|
||||||
|
{{ $sf->airline->icao }}
|
||||||
|
@endif
|
||||||
|
</td>
|
||||||
<td>{{ $sf->type }}</td>
|
<td>{{ $sf->type }}</td>
|
||||||
<td>{{ $sf->name }}</td>
|
<td>{{ $sf->name }}</td>
|
||||||
<td style="width: 10%; text-align: center;" class="form-inline">
|
<td style="width: 10%; text-align: center;" class="form-inline">
|
||||||
|
Loading…
Reference in New Issue
Block a user