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.

91 lines
3.7 KiB
PHTML

@extends('temp.admin')
@php
use NN\CookieHandler as Cookie;
use NN\Module\DB;
use NN\Module\View;
@endphp
@section("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">Arus Kas</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 id="dasbor">
<div class="row">
<div class="col-12 col-sm-12">
<div class="card">
<div class="card-body">
<div class="mb-1" id="filterpath"></div>
<div style="width:calc(100% - 5px);display:grid;grid-template-columns: calc(100% /3 ) calc(100% /3 ) calc(100% /3 ) ;grid-gap:5px;">
<button id="play" class="btn mt-1 btn-primary w-100">
<i class="la la-play"></i> Preview
</button>
<button id="print" class="btn mt-1 btn-success w-100"><i class="icon-printer"></i> Cetak Laporan</button>
<button id="exportExcel" class="btn mt-1 btn-success w-100"><i class="la la-file-excel-o"></i> Export Excel</button>
</div>
</div>
</div>
</div>
<div class="col-12 col-sm-12">
<div class="card" id="cardMenuReport">
<div class="card-content">
<div class="card-body">
<div style="max-width: 100%; overflow: auto;">
<table id="cetaklap" width="100%">
<tr>
<td>
<table style="width:100%;" id="report">
<thead>
</thead>
<tbody>
</tbody>
</table>
</td>
<td width="8px"></td>
<td width="8px" style="border-left: 1px solid #aaa;"></td>
<td>
<table style="width:100%;" id="report2">
<thead>
</thead>
<tbody>
</tbody>
</table>
</td>
</tr>
</table>
</div>
</div>
</div>
</div>
</div>
</section>
</div>
<noscript id="mainacc">{!! json_encode(DB::query_result_object("SELECT * FROM mainacc")) !!}</noscript>
<noscript id="main">{!! json_encode(DB::query_result_object("SELECT * FROM mainacc WHERE golongan = '05'")) !!}</noscript>
@endsection
@section('script')
<script type="module" src="{{PATH}}/assets-js/module-lap-aruskas.js?v={{View::filetimes()}}"></script>
@endsection