diff --git a/resources/views/modules/form/table.blade.php b/resources/views/modules/form/table.blade.php
index d362ad8..f92211c 100644
--- a/resources/views/modules/form/table.blade.php
+++ b/resources/views/modules/form/table.blade.php
@@ -37,12 +37,11 @@
@php
- $counter = 1;
$years = activityYearRange($inventoryYear);
@endphp
- @foreach ($years as $year)
+ @foreach ($years as $k => $year)
- | {{ $counter }} |
+ {{ $k+1 }} |
{{ $year }} |
@foreach ($formDetails as $detail)
@php
@@ -61,19 +60,10 @@
value="{{ getFormattedValue($activity_value) ?? '' }}"
class="form-control text-right" oninput="numberFormat(this)"
{{ $isLocked || $instansi === 'all' || $limitInternal ? 'readonly' : '' }}>
- {{--
- {{ $detail->unit_code }}
-
--}}
-
- {{-- --}}
+
@endforeach
- @php
- $counter++;
- @endphp
@endforeach