main
Ilham Wara Nugroho 2026-06-12 14:53:00 +07:00
parent 890dfa7eb6
commit c5ea217ae4
1 changed files with 2 additions and 2 deletions

View File

@ -78,13 +78,13 @@
->where('activity_unit_code', $detail->unit_code)
->first()->activity_value ?? ''
: '';
dd($activity_value);
// dd($activity_value);
@endphp
<td>
<div class="input-group">
<input type="text"
name="data[{{ $year }}][{{ $detail->activity_code }}-{{ $detail->unit_code }}]"
value="{{ getFormattedValue($activity_value) ?? null }}"
value="{{ @$activity_value == "" ? "" : getFormattedValue($activity_value)}}"
class="form-control text-right" oninput="numberFormat(this)"
{{ $isLocked || $instansi === 'all' || $limitInternal ? 'readonly' : '' }}>
</div>