71 lines
2.3 KiB
PHP
71 lines
2.3 KiB
PHP
<x-other.modal id="mForm" title="Tambah Data" subTitle="Tambah Data {{$title}}" info="" separator="false" size="md">
|
|
<x-slot name="action">
|
|
<button onclick="store()" type="button" class="btn btn-transparent-white font-weight-bold mr-2" id="znBtnLoader">
|
|
Simpan
|
|
</button>
|
|
</x-slot>
|
|
<x-slot name="content">
|
|
<form id="formData">
|
|
<input id="get_id" type="hidden" name="get_id" value="">
|
|
<input id="is_active" type="hidden" name="is_active" value="">
|
|
|
|
<div class="separator separator-dashed separator-border-1 mt-5 mb-5"></div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<x-form.input title="Role User" id="description" value="" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
|
|
</x-slot>
|
|
</x-other.modal>
|
|
|
|
<x-other.modal id="mDetail" title="Detail Transaksi" subTitle="Detail Transaksi" info="" separator="false" size="lg">
|
|
<x-slot name="action">
|
|
|
|
</x-slot>
|
|
<x-slot name="content">
|
|
<table class="table" id="datatableDetail">
|
|
<thead>
|
|
<tr>
|
|
<th>No</th>
|
|
<th>Jenis Biller</th>
|
|
<th>Jumlah Transaksi</th>
|
|
<th>Sukses</th>
|
|
<th>Gagal</th>
|
|
<th>Pending</th>
|
|
<th>Batal</th>
|
|
<th>Prosentase Keberhasilan</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="listDetail">
|
|
|
|
</tbody>
|
|
</table>
|
|
</x-slot>
|
|
</x-other.modal>
|
|
|
|
<x-other.modal id="mDetailGagal" title="Detail Transaksi Gagal" subTitle="Detail Transaksi Gagal" info="" separator="false" size="lg">
|
|
<x-slot name="action">
|
|
|
|
</x-slot>
|
|
<x-slot name="content">
|
|
<table class="table" id="datatableDetailGagal">
|
|
<thead>
|
|
<tr>
|
|
<th>No</th>
|
|
<th>Penyebab Gagal</th>
|
|
<th>Jumlah</th>
|
|
<th>Prosentase</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody id="listDetailGagal">
|
|
|
|
</tbody>
|
|
</table>
|
|
</x-slot>
|
|
</x-other.modal>
|
|
|
|
|