One Hat Cyber Team
Your IP :
18.221.11.104
Server IP :
104.21.96.1
Server :
Linux agrigation-prod 5.15.0-67-generic #74-Ubuntu SMP Wed Feb 22 14:14:39 UTC 2023 x86_64
Server Software :
nginx/1.24.0
PHP Version :
7.4.33
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
home
/
forge
/
app.gftag.com
/
storage
/
framework
/
views
/
View File Name :
a39456ee89f8921a257d12aeef8d1748.php
<?php $__env->startSection('styles'); ?> <style> .edit, .delete { border: none !important; margin: 1em; } .edit { color: #136BAF; } .delete { color: red; } thead th { position: -webkit-sticky; position: sticky; top: 0; background-color: #f1f1f1; z-index: 1; } </style> <link rel="stylesheet" href="<?php echo e(asset('css/lib/datatables-net/datatables.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('css/separate/vendor/datatables-net.min.css')); ?>"> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="page-content"> <div class="container-fluid"> <?php if(session()->has('message')): ?> <div class="alert alert-info alert-fill alert-close alert-dismissible fade in"> <strong><?php echo e(session()->get('message')); ?></strong> </div> <?php endif; ?> <section class="card"> <div class="row"> <div class="header"> <div class="col-xs-8"> <h3 class="p-l">Customers Outstandings</h3> </div> <div class="col-xs-4"> <button class="exportToExcel btn-sm btn-success m-y-1 m-r-2 float-right">Export</button> </div> </div> </div> </section> <section class="card"> <div class="card-block"> <table id="example" class="sales_report table2excel_with_colors display table table-striped table-bordered" cellspacing="0" width="100%"> <thead> <tr> <th>Customer</th> <th>0-30 Days</th> <th>31-60 Days</th> <th>61-90 Days</th> <th>Above 90 Days</th> <th>Total</th> </tr> </thead> <tbody> <?php $__currentLoopData = $customers; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key => $value): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($key); ?></td> <td><?php echo e($value[0]); ?></td> <td><?php echo e($value[1]); ?></td> <td><?php echo e($value[2]); ?></td> <td><?php echo e($value[3]); ?></td> <td><?php echo e($value[0] + $value[1] + $value[2] + $value[3]); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </section> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('scripts'); ?> <script src="<?php echo e(asset('js/lib/datatables-net/datatables.min.js')); ?>"></script> <script src="<?php echo e(asset('js/jquery.table2excel.js')); ?>"></script> <script src="https://code.jquery.com/ui/1.11.1/jquery-ui.min.js"></script> <script> $(function() { $("#start_date").datepicker({ dateFormat: "yy-mm-dd" }); $("#end_date").datepicker({ dateFormat: "yy-mm-dd" }); }); </script> <script> $(function() { $(".exportToExcel").click(function(e) { var table = $('.sales_report'); if (table && table.length) { var preserveColors = (table.hasClass('table2excel_with_colors') ? true : false); $(table).table2excel({ exclude: ".noExl", name: "Excel Document Name", filename: "CustomerOutstanding" + new Date().toISOString().replace(/[\-\:\.]/g, "") + ".xls", fileext: ".xls", exclude_img: true, exclude_links: true, exclude_inputs: true, preserveColors: preserveColors }); } }); }); </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/forge/app.gftag.com/resources/views/cashbook/outstanding.blade.php ENDPATH**/ ?>