Fix field label to 'Required' #148
This commit is contained in:
parent
3b4ef817a1
commit
c732268bd7
@ -261,6 +261,8 @@ flights:
|
|||||||
dpt_airport_id: KAUS
|
dpt_airport_id: KAUS
|
||||||
arr_airport_id: KJFK
|
arr_airport_id: KJFK
|
||||||
route: KAUS SID TNV J87 IAH J2 LCH J22 MEI J239 ATL J52 AJFEB J14 BYJAC Q60 JAXSN J14 COLIN J61 HUBBS J55 SIE STAR KJFK
|
route: KAUS SID TNV J87 IAH J2 LCH J22 MEI J239 ATL J52 AJFEB J14 BYJAC Q60 JAXSN J14 COLIN J61 HUBBS J55 SIE STAR KJFK
|
||||||
|
distance: 2028
|
||||||
|
level: 360
|
||||||
dpt_time: 6PM CST
|
dpt_time: 6PM CST
|
||||||
arr_time: 11PM EST
|
arr_time: 11PM EST
|
||||||
created_at: NOW
|
created_at: NOW
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
<table class="table table-hover table-responsive" id="pirepFields-table">
|
<table class="table table-hover table-responsive" id="pirepFields-table">
|
||||||
<thead>
|
<thead>
|
||||||
<th>Name</th>
|
<th>Name</th>
|
||||||
<th>Required</th>
|
<th style="text-align: center;">Required</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
@ -11,7 +11,7 @@
|
|||||||
<td>{!! $field->name !!}</td>
|
<td>{!! $field->name !!}</td>
|
||||||
<td style="text-align: center;">
|
<td style="text-align: center;">
|
||||||
@if($field->required === true)
|
@if($field->required === true)
|
||||||
<span class="label label-success">Hub</span>
|
<span class="label label-success">Required</span>
|
||||||
@endif
|
@endif
|
||||||
</td>
|
</td>
|
||||||
<td class="text-right">
|
<td class="text-right">
|
||||||
|
Loading…
Reference in New Issue
Block a user