a2ea9b29ba
* Bundle CSS changes * Edit language * Clickable flight IDs #419 * Fix dropdown menu going offscreen * formatting
18 lines
520 B
PHP
18 lines
520 B
PHP
<table>
|
|
@foreach($pireps as $p)
|
|
<tr>
|
|
<td style="padding-right: 10px;">
|
|
<span class="title">{{ $p->airline->code }}</span>
|
|
</td>
|
|
<td>
|
|
<a href="{{route('frontend.airports.show', [$p->dpt_airport_id])}}">{{$p->dpt_airport_id}}</a>
|
|
-
|
|
<a href="{{route('frontend.airports.show', [$p->arr_airport_id])}}">{{$p->arr_airport_id}}</a>
|
|
@if($p->aircraft)
|
|
{{ $p->aircraft->name }}
|
|
@endif
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</table>
|