fix(dokumen): perbaiki pengambilan nilai permohonan_id
- Mengubah nilai yang diambil untuk permohonan_id dari $document->id menjadi $document->permohonan_id. - Memastikan bahwa nilai yang tepat digunakan dalam input tersembunyi untuk permohonan_id.
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
@method('PUT')
|
@method('PUT')
|
||||||
@endif
|
@endif
|
||||||
@csrf
|
@csrf
|
||||||
<input type="hidden" name="permohonan_id" value="{{ $document->id ?? request()->get('permohonan_id') }}">
|
<input type="hidden" name="permohonan_id" value="{{ $document->permohonan_id ?? request()->get('permohonan_id') }}">
|
||||||
<div class="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
|
<div class="flex items-baseline flex-wrap lg:flex-nowrap gap-2.5">
|
||||||
<label class="form-label max-w-56">
|
<label class="form-label max-w-56">
|
||||||
Debitur
|
Debitur
|
||||||
|
|||||||
Reference in New Issue
Block a user