This commit is contained in:
Zakwan Hamdan
2020-10-22 12:53:51 +08:00
parent b09b980c95
commit 4a83c0439e
3 changed files with 16 additions and 5 deletions
+9 -4
View File
@@ -12,7 +12,7 @@
Nama
</div>
<div class="col-8">
<input type="text" name="name" id="name" readonly value="{{ $customer_info['name'] }}">
<input type="text" name="name" id="name" readonly value="{{ $customer_info['nama'] }}">
</div>
</div>
</div>
@@ -22,7 +22,7 @@
No Pelanggan
</div>
<div class="col-8">
<input type="text" name="no_pelanggan" readonly id="no_pelanggan" value="{{ $customer_info['no_pelanggan'] }}">
<input type="text" name="no_pelanggan" readonly id="no_pelanggan" value="{{ $customer_info['nopelanggan'] }}">
</div>
</div>
</div>
@@ -42,7 +42,7 @@
Jumlah Pinjaman Semasa
</div>
<div class="col-8">
<input type="text" name="pinjaman_semasa" id="pinjaman_semasa" readonly value="{{ $customer_info['pinjaman_semasa'] }}">
<input type="text" name="pinjaman_semasa" id="pinjaman_semasa" readonly value="">
</div>
</div>
</div>
@@ -62,7 +62,7 @@
</div>
<div class="card">
<div class="card-body">
<table>
<table class="table" id="myTable">
<thead>
<tr>
<th>Bil</th>
@@ -154,4 +154,9 @@
</div>
</div>
</div>
<script>
$(document).ready( function () {
$('#myTable').DataTable();
} );
</script>
@endsection