One Hat Cyber Team
Your IP :
18.218.206.106
Server IP :
104.21.48.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 :
acb8d06f09ca587e0932291085cc6c8d.php
<?php $__env->startSection('styles'); ?> <style> .edit, .delete, .invoice { border: none !important; } .edit { color: #136BAF; } .delete { color: red; } table.table-bordered.dataTable tbody th, table.table-bordered.dataTable tbody td { font-size: 0.9em; } #table-content { display: block; overflow-x: scroll; } #fetch { margin-right: 4px; } .form-content { display: flex; align-items: center; } .input-group-btn { margin-top: 10px; } .input-group-btn button { height: 38px } </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"> <link rel="stylesheet" href="<?php echo e(asset('css/separate/vendor/bootstrap-select/bootstrap-select.min.css')); ?>"> <link rel="stylesheet" href="<?php echo e(asset('css/separate/vendor/select2.min.css')); ?>"> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="page-content"> <div class="container-fluid"> <section class="card"> <div class="row"> <div class="col-lg-6 p-t"> <h3 class="p-l">Credit Note Lists</h3> </div> </div> </section> <?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" style="position: relative"> <div class="card-block" id="table_content"> <table id="table-content" class="sales_report display table table-striped table-bordered" cellspacing="0" width="100%"> <thead> <tr> <th>SL. No</th> <th>Credit Note</th> <th>Sale Invoice</th> <th>Customer</th> <th>Sale Date</th> <th>Return Date</th> <th>Return Amount</th> <th>Action</th> </tr> </thead> <tbody> <?php $i = 1; ?> <?php $__currentLoopData = $data; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $sale_return): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($i); ?></td> <td><?php echo e($sale_return->credit_note_number); ?></td> <td><?php echo e($sale_return->sales->invoice_number); ?></td> <td><?php echo e($sale_return->sales->customer->name); ?></td> <td><?php echo e($sale_return->sales->sale_date); ?></td> <td><?php echo e($sale_return->return_date); ?></td> <td><?php echo e($sale_return->return_amount); ?></td> <td> <a href="<?php echo e(route('create-sales-return', ['sale_id' => $sale_return->sale_id])); ?>" class="edit" title="Edit"> <i class="fa fa-pencil-square-o fa-lg" aria-hidden="true"></i> </a> <a href="<?php echo e(route('return-credit-note', [$sale_return->sale_id])); ?>" class="invoice" target="_blank" title="Invoice"> <i class="fa fa-print fa-lg" aria-hidden="true"></i> </a> </td> </tr> <?php $i++; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> <input id="hidden_page" value="1" hidden></input> </table> <div id="pagination-links"> </div> </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 src="<?php echo e(asset('js/lib/bootstrap-select/bootstrap-select.min.js')); ?>"></script> <script src="<?php echo e(asset('js/lib/select2/select2.full.min.js')); ?>"></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/saleReturn/index.blade.php ENDPATH**/ ?>