From cd3b7301fce87d0affc4818042193505de023983 Mon Sep 17 00:00:00 2001 From: Daeng Deni Mardaeni Date: Mon, 4 Nov 2024 16:32:55 +0700 Subject: [PATCH] Change 'Kode Penawaran' column to 'Nama Debitur' Renamed the 'Kode Penawaran' field to 'Nama Debitur' in the table header and datatable configuration, including the necessary rendering function to display the debiture name correctly. This improves clarity by accurately reflecting the data being displayed in the column. --- resources/views/prosespenawaran/index.blade.php | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/resources/views/prosespenawaran/index.blade.php b/resources/views/prosespenawaran/index.blade.php index 67e4ccb..dd9d260 100644 --- a/resources/views/prosespenawaran/index.blade.php +++ b/resources/views/prosespenawaran/index.blade.php @@ -38,8 +38,8 @@ Nomor Registrasi - - Kode Penawaran + + Nama Debitur @@ -132,8 +132,11 @@ 'nomor_registrasi': { title: 'Nomor Registrasi', }, - code: { - title: 'Kode Penawaran', + debiture: { + title: 'Nama Debitur', + render: (item, data) => { + return `${data.debiture.name}` + } }, start_date: { title: 'Tanggal Penawaran',