Made some fonts more visible
This commit is contained in:
parent
0bb4ca78f5
commit
75d4ecc3c8
@ -82,11 +82,13 @@
|
||||
<table>
|
||||
@foreach($pireps as $p)
|
||||
<tr>
|
||||
<td style="padding-right: 10px;">{!! $p->airline->code !!}</td>
|
||||
<td style="padding-right: 10px;">
|
||||
<span class="title">{!! $p->airline->code !!}</span>
|
||||
</td>
|
||||
<td>
|
||||
<span class="description">{!! $p->dpt_airport->icao !!}</span>-
|
||||
<span class="description">{!! $p->arr_airport->icao !!}</span>
|
||||
<span class="description">{!! $p->aircraft->name !!}</span>
|
||||
{!! $p->dpt_airport_id !!}-
|
||||
{!! $p->arr_airport_id !!}
|
||||
{!! $p->aircraft->name !!}
|
||||
</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
@ -105,8 +107,10 @@
|
||||
<table>
|
||||
@foreach($users as $u)
|
||||
<tr>
|
||||
<td style="padding-right: 10px;">{!! $u->pilot_id !!}</td>
|
||||
<td><span class="description">{!! $u->name !!}</span></td>
|
||||
<td style="padding-right: 10px;">
|
||||
<span class="title">{!! $u->pilot_id !!}</span>
|
||||
</td>
|
||||
<td>{!! $u->name !!}</td>
|
||||
</tr>
|
||||
@endforeach
|
||||
</table>
|
||||
|
@ -28,26 +28,35 @@
|
||||
<div class="col-sm-10">
|
||||
<div class="row">
|
||||
<div class="col-sm-6">
|
||||
<div>
|
||||
<span class="description">DEP </span>
|
||||
{!! $pirep->dpt_airport->icao !!}
|
||||
<span class="description">ARR </span>
|
||||
{!! $pirep->arr_airport->icao !!}
|
||||
</div>
|
||||
<div><span class="description">Flight Time </span>
|
||||
{!! Utils::minutesToTimeString($pirep->flight_time) !!}
|
||||
</div>
|
||||
<div><span class="description">Aircraft </span>
|
||||
{!! $pirep->aircraft->registration !!} ({!! $pirep->aircraft->name !!})
|
||||
</div>
|
||||
<div>
|
||||
<span class="description">Flight Level </span>
|
||||
{!! $pirep->level !!}
|
||||
</div>
|
||||
<div>
|
||||
<span class="description">Filed On: </span>
|
||||
{!! show_datetime($pirep->created_at) !!}
|
||||
</div>
|
||||
<table width="100%">
|
||||
<tr>
|
||||
<td width="20%" nowrap><span class="title">DEP </span></td>
|
||||
<td>{!! $pirep->dpt_airport_id !!}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td nowrap><span class="title">ARR </span></td>
|
||||
<td>{!! $pirep->arr_airport_id !!} </td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td nowrap><span class="title">Flight Time </span></td>
|
||||
<td>{!! Utils::minutesToTimeString($pirep->flight_time) !!}</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td nowrap><span class="title">Aircraft </span></td>
|
||||
<td>{!! $pirep->aircraft->name !!}
|
||||
({!! $pirep->aircraft->registration !!})</td>
|
||||
</tr>
|
||||
@if($pirep->level)
|
||||
<tr>
|
||||
<td nowrap><span class="title">Flight Level </span></td>
|
||||
<td>{!! $pirep->level !!}</td>
|
||||
</tr>
|
||||
@endif
|
||||
<tr>
|
||||
<td nowrap><span class="title">Filed On: </span></td>
|
||||
<td>{!! show_datetime($pirep->created_at) !!}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<div class="col-sm-6">
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user