73db8b97d7
2. change in gadaian page that have static 75% and 80% max pinjam turn to manipulate value of max pinjam based on mutu emas
64 lines
3.0 KiB
PHP
64 lines
3.0 KiB
PHP
@extends('layouts.app_operasi')
|
|
@section('content')
|
|
|
|
<div class="container">
|
|
<div class="row justify-content-center">
|
|
<div class="col-md-12">
|
|
<div class="card">
|
|
|
|
<nav aria-label="breadcrumb">
|
|
<ol class="breadcrumb pb-3">
|
|
<li class="breadcrumb-item"><a href="{{ url('/') }}">Home</a></li>
|
|
<li class="breadcrumb-item"><a href="{{ url('operasi/parameter') }}">Parameter</a></li>
|
|
<li class="breadcrumb-item active" aria-current="page">Margin Mutu Emas</li>
|
|
</ol>
|
|
</nav>
|
|
<div class="card-body text-center">
|
|
|
|
<div class="mt-3">
|
|
|
|
<table class='table table-striped table-hover' id='table-marginmutu' style="width:100%;">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th>Bil</th>
|
|
<th>Karat</th>
|
|
<th>Keterangan</th>
|
|
<th>Teller (%)</th>
|
|
<th>PC (%)</th>
|
|
<th>Operasi (%)</th>
|
|
<th>Tarikh Update</th>
|
|
<th>Tindakan</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@foreach($maxmutuemas as $index=>$mme)
|
|
<tr>
|
|
<td>{{ $loop->iteration }}</td>
|
|
<td>{{ $mme['karat'] }}</td>
|
|
<td>{{ $mme['keterangan'] }}</td>
|
|
<td>{{ $mme['teller'] }}%</td>
|
|
<td>{{ $mme['pc'] }}%</td>
|
|
<td>{{ $mme['operasi'] }}%</td>
|
|
<td>{{ \Carbon\Carbon::parse($mme['tarikhupdate'])->format('d/m/Y') }}</td>
|
|
<td>
|
|
<a href="{{ route('operasi.marginmutu.edit') }}?recno={{ $mme['recno'] }}&karat={{ $mme['karat'] }}&keterangan={{ $mme['keterangan'] }}&teller={{ $mme['teller'] }}&pc={{ $mme['pc'] }}&operasi={{ $mme['operasi'] }}"
|
|
class="btn btn-sm btn-warning">Edit</a>
|
|
</td>
|
|
</tr>
|
|
@endforeach
|
|
</tbody>
|
|
</table>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script>
|
|
var table_marginmutu = $('#table-marginmutu').DataTable({
|
|
"pageLength": 25,
|
|
"order": [[ 0, "asc" ]]
|
|
});
|
|
</script>
|
|
@endsection |