Files
sidata/resources/views/salurdana/frm_debt.blade.php
T
2022-07-07 16:29:51 +07:00

48 lines
2.2 KiB
PHP

<div class="table-responsive">
<button type="button" class="btn btn-sm btn-success btn_plus_debt">Tambah Data</button>
<table id="tbl_debt" class="table table-striped jambo_table bulk_action" style="width:100%;">
<thead>
<tr class="headings">
<th>Uraian Utang</th>
<th>Jumlah Utang</th>
<th>Aksi</th>
</tr>
</thead>
<tbody>
<tr>
<td><input type="text" name="debt[deskripsi][]" placeholder="Uraian" class="form-control uraian_debt"></td>
<td><input type="text" name="debt[jumlah][]" placeholder="Jumlah" class="form-control number-separator-indo calculate_field_debt" value="0"></td>
<td><button class="btn_minus_debt" type="button"><i class="fa fa-minus"></i></button></td>
</tr>
</tbody>
</table>
</div>
<div class="row">
<div class="col-5 offset-7">
<div class="form-group row">
<label class="col-form-label col-md-3 col-sm-3 label-align" for="rincian_utang_total">Jumlah Utang
</label>
<div class="col-md-9 col-sm-9 ">
<input type="text" id="rincian_utang_total" name="rincian_utang[total]" value=0 disabled class="form-control number-separator-indo" >
</div>
</div>
</div>
<div class="col-5 offset-7">
<div class="form-group row">
<label class="col-form-label col-md-3 col-sm-3 label-align" for="rincian_utang_angsur">Jumlah Utang yang sudah diangsur
</label>
<div class="col-md-9 col-sm-9 ">
<input type="text" id="rincian_utang_angsur" name="rincian_utang[angsur]" value="0" class="form-control number-separator-indo" >
</div>
</div>
</div>
<div class="col-5 offset-7">
<div class="form-group row">
<label class="col-form-label col-md-3 col-sm-3 label-align" for="rincian_utang_angsur">Sisa Utang
</label>
<div class="col-md-9 col-sm-9 ">
<input type="text" id="sisa_utang" name="rincian_utang[sisa_utang]" value="0" class="form-control number-separator-indo" disabled>
</div>
</div>
</div>
</div>