You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.5 KiB
PHP
67 lines
2.5 KiB
PHP
<?php
|
|
use NN\Module\DB;
|
|
use NN\Module\View;
|
|
?>
|
|
<?php $__env->startSection("content"); ?>
|
|
|
|
<div class="content-header row">
|
|
<div class="content-header-left col-md-6 col-12 mb-2 breadcrumb-new">
|
|
<h3 class="content-header-title mb-0 d-inline-block">Laporan</h3>
|
|
<div class="row breadcrumbs-top d-inline-block">
|
|
<div class="breadcrumb-wrapper col-12">
|
|
<ol class="breadcrumb">
|
|
<li class="breadcrumb-item active" id="sublap">Tunggakan Detail</li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="content-header-right col-md-6 col-12">
|
|
<div class="btn-group float-md-right">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="content-body">
|
|
<section class="mb-3" id="dasbor">
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
<div class="card" id="cardMenuArea" style="display:none;">
|
|
<div class="card-header" style='border-bottom: 1px solid #dddddd;'>
|
|
<button class="btn btn-success print-data"><i class="icon-printer"></i></button>
|
|
<input id="searchInput" type="search" style="max-width:200px; float: right;" class="form-control" placeholder="search...">
|
|
<div id="loaderSearch" class="spinner-border spinner-border-sm mt-1 mr-1" role="status" style="float:right;display:none;">
|
|
<span class="visually-hidden"></span>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div id="cardMenuReport">
|
|
<div class="card">
|
|
<div class="card-body">
|
|
<div id="report-r">
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</section>
|
|
</div>
|
|
<?php $__env->stopSection(); ?>
|
|
<?php $__env->startSection('css'); ?>
|
|
<style>
|
|
table td{
|
|
border : none;
|
|
}
|
|
</style>
|
|
<?php $__env->stopSection(); ?>
|
|
<?php $__env->startSection('script'); ?>
|
|
<?php
|
|
$cond = DB::query_result_object("SELECT kode id, nama text FROM anggota ORDER BY kode ASC");
|
|
?>
|
|
<noscript id="anggota"><?php echo json_encode($cond,true); ?></noscript>
|
|
<?php echo View::jsm('lap/tunggakandetail.js'); ?>
|
|
|
|
<?php $__env->stopSection(); ?>
|
|
|
|
<?php echo $__env->make('temp.admin', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/vhosts/warpekamart.com/httpdocs/usp/views/admin/laporan/tunggakandetail.blade.php ENDPATH**/ ?>
|