tebus dan hargaemas
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
<!-- Modal kemaskiniHargaModal -->
|
||||
<div class="modal fade" id="kemaskiniHargaModal" tabindex="-1" role="dialog" aria-labelledby="ModalCenterTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="ModalTitle">Kemaskini Harga Emas</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<form id="kemaskinihargala" method="post" action="{{ route('hargaemas.update') }}">
|
||||
@csrf
|
||||
<div class="modal-body">
|
||||
<input type="hidden" name="recno" id="recno"/>
|
||||
<label>Karat</label>
|
||||
<input name="karat" class="form-control" id="karat" readonly/>
|
||||
|
||||
<label>Keterangan</label>
|
||||
<input name="keterangan" class="form-control" id="keterangan" readonly/>
|
||||
|
||||
<label>Harga</label>
|
||||
<input name="harga" id="harga" class="form-control"/>
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-danger btn-lg" data-dismiss="modal">Batal</button>
|
||||
<button type="submit" class="btn btn-success btn-lg">Terima</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<!-- Modal CreateHargaModal -->
|
||||
<div class="modal fade" id="createHargaModal" tabindex="-1" role="dialog" aria-labelledby="ModalCenterTitle" aria-hidden="true">
|
||||
<div class="modal-dialog modal-dialog-centered modal-lg" role="document">
|
||||
<div class="modal-content">
|
||||
<div class="modal-header">
|
||||
<h5 class="modal-title" id="ModalTitle">Tambah Harga Emas</h5>
|
||||
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
||||
<span aria-hidden="true">×</span>
|
||||
</button>
|
||||
</div>
|
||||
<div class="modal-body">
|
||||
<form method="post" action="{{ route('hargaemas.create') }}">
|
||||
@csrf
|
||||
<label>Karat</label>
|
||||
<input name="karat" class="form-control"/>
|
||||
|
||||
<label>Keterangan</label>
|
||||
<input name="keterangan" class="form-control"/>
|
||||
|
||||
<label>Harga</label>
|
||||
<input name="harga" class="form-control"/>
|
||||
</div>
|
||||
|
||||
<div class="modal-footer">
|
||||
<button type="button" class="btn btn-danger btn-lg" data-dismiss="modal">Batal</button>
|
||||
<button type="submit" class="btn btn-success btn-lg">Terima</button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user