update
parent
96459f29a6
commit
0beeddd43e
|
|
@ -47,10 +47,11 @@
|
|||
<div class="table-responsive mt-3" style="overflow-x: auto;">
|
||||
<table class="table table-bordered table-detail">
|
||||
|
||||
<tr>
|
||||
<th>No</th>
|
||||
<th>Tahun</th>
|
||||
<tr class="table-info">
|
||||
<th width="5%">No</th>
|
||||
<th width="5%">Tahun</th>
|
||||
<th>Activity</th>
|
||||
<th width="5%">Satuan</th>
|
||||
<th>Value</th>
|
||||
</tr>
|
||||
@foreach ($formDetails as $k => $detail)
|
||||
|
|
@ -62,7 +63,7 @@
|
|||
<td>{{$k+1}}</td>
|
||||
<td>{{request()->tahun}}</td>
|
||||
<td style="min-width: 150px; text-decoration:normal">
|
||||
{{ $detail->activity ? $detail->activity->name : 'N/A' }} - ({{ $detail->unit_code }})
|
||||
{{ $detail->activity ? $detail->activity->name : 'N/A' }}
|
||||
|
||||
@if ($unitCategory)
|
||||
|
||||
|
|
@ -70,6 +71,9 @@
|
|||
{{ $unitCode }}
|
||||
@endif
|
||||
</td>
|
||||
<td>
|
||||
{{ $detail->unit_code }}
|
||||
</td>
|
||||
@php
|
||||
$activity_value = isset($activityFormDetails[request()->tahun])
|
||||
? $activityFormDetails[request()->tahun]
|
||||
|
|
|
|||
Loading…
Reference in New Issue