refactor(memo): hapus checkbox selection
Perubahan yang dilakukan: - Menghapus kolom checkbox "select-all" dari header tabel pada halaman create memo penyelesaian - Menghapus input checkbox di setiap baris permohonan dalam tabel untuk menghilangkan fitur selection - Menyederhanakan tampilan tabel menjadi daftar permohonan tanpa opsi pilih banyak - Memperbaiki user experience dengan interface yang lebih bersih dan sederhana - Mengurangi kompleksitas form dengan menghilangkan proses multiple selection
This commit is contained in:
@@ -77,9 +77,6 @@
|
|||||||
<table class="table table-border">
|
<table class="table table-border">
|
||||||
<thead>
|
<thead>
|
||||||
<tr class="bg-gray-50">
|
<tr class="bg-gray-50">
|
||||||
<th class="w-12 text-center">
|
|
||||||
<input type="checkbox" id="select-all" class="checkbox checkbox-sm" checked>
|
|
||||||
</th>
|
|
||||||
<th>Nomor Registrasi</th>
|
<th>Nomor Registrasi</th>
|
||||||
<th>Debitur</th>
|
<th>Debitur</th>
|
||||||
<th>Cabang</th>
|
<th>Cabang</th>
|
||||||
@@ -91,11 +88,6 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
@foreach ($permohonanList as $permohonan)
|
@foreach ($permohonanList as $permohonan)
|
||||||
<tr>
|
<tr>
|
||||||
<td class="text-center">
|
|
||||||
<input type="checkbox" name="permohonan_ids[]"
|
|
||||||
value="{{ $permohonan->id }}"
|
|
||||||
class="checkbox checkbox-sm permohonan-checkbox" checked>
|
|
||||||
</td>
|
|
||||||
<td class="font-medium">{{ $permohonan->nomor_registrasi }}</td>
|
<td class="font-medium">{{ $permohonan->nomor_registrasi }}</td>
|
||||||
<td>{{ $permohonan->debiture->name ?? '-' }}</td>
|
<td>{{ $permohonan->debiture->name ?? '-' }}</td>
|
||||||
<td>{{ $permohonan->branch->name ?? '-' }}</td>
|
<td>{{ $permohonan->branch->name ?? '-' }}</td>
|
||||||
|
|||||||
Reference in New Issue
Block a user