master
cody 4 months ago
parent f405290aaf
commit d4b486edf2

@ -7,11 +7,10 @@
<div class="card-body">
<div class="mb-3">
<form class="form-inline" id="search-form" autocomplete="off">
<select class="form-control mr-1" name="project_id"
onchange="$(this).closest('form').submit()">
<select class="form-control mr-1" name="project_id" onchange="$(this).closest('form').submit()">
@foreach($projects as $pp)
<option
value="{{$pp->id}}" @if($pp->id == $project_id) {{ "selected" }}@endif>{{$pp->name}}</option>
<option value="{{$pp->id}}" @if($pp->id == $project_id) {{ "selected" }}@endif>{{$pp->name}}
</option>
@endforeach
</select>
<select class="form-control" name="month" onchange="$(this).closest('form').submit()">
@ -35,9 +34,7 @@
@foreach ($lie as $lieItem)
<th>
<div>{{$lieItem['name'] ?? ''}}</div>
@if(!empty($lieItem['factor_item_name']))
<div style="font-size: 0.85em; color: #666; font-weight: normal;">{{$lieItem['factor_item_name']}}</div>
@endif
</th>
@endforeach
@endif

Loading…
Cancel
Save