One Hat Cyber Team
Your IP :
18.189.13.48
Server IP :
104.21.16.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
/
Edit File:
380c95da24cb5c5467103a7b2d235633.php
<table id="table-content" class="sales_report display table table-striped table-bordered table-responsive" cellspacing="0" width="100%"> <thead> <tr> <th>SL. No</th> <th>Sale Type</th> <th>Sale Invoice</th> <th>Customer</th> <th>Sale Date</th> <th>Narration</th> <th>Subtotal</th> <th>Discount</th> <th>Gst</th> <th>Total Amount</th> <th>Recorded Income</th> <th>Action</th> <th>Return</th> </tr> </thead> <tbody> <?php if($filter_sales->isEmpty() || $filter_sales == null): ?> <tr> <td colspan="12" align="center"> <nav class="p-4"> <p>Data Not Found.</p> </nav> </td> </tr> <?php else: ?> <?php $i = 1; ?> <?php $__currentLoopData = $filter_sales; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $sale): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($i); ?></td> <td><?php echo e($sale->type == 'product' ? 'Product' : 'Service'); ?></td> <td><?php echo e($sale->invoice_number); ?></td> <td><?php echo e($sale->customer->name); ?></td> <td><?php echo e($sale->sale_date); ?></td> <td><?php echo e($sale->comments); ?></td> <td><?php echo e($sale->subtotal); ?></td> <td><?php echo e($sale->discount); ?></td> <td><?php echo e($sale->gst); ?></td> <td><?php echo e($sale->total); ?></td> <td><?php echo e($sale->income); ?></td> <td> <a href="<?php echo e(route('edit-sale', [$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('invoice-sale', [$sale->id])); ?>" class="invoice" target="_blank" title="Invoice"> <i class="fa fa-print fa-lg" aria-hidden="true"></i> </a> <a href="<?php echo e(route('create-income')); ?>?source=sale&id=<?php echo e($sale->id); ?>" class="invoice" title="Income"> <i class="fa fa-inr fa-lg" aria-hidden="true"></i> </a> </td> <td><a href="<?php echo e(route('create-sales-return', ['sale_id' => $sale->id])); ?>">Return</a></td> </tr> <?php $i++; ?> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php endif; ?> </tbody> <input id="hidden_page" value="1" hidden></input> </table> <div id="pagination-links"> <?php echo e($filter_sales->links('pagination::bootstrap-5')); ?> </div> <?php /**PATH /home/forge/app.gftag.com/resources/views/sale/partials/filtered-table-body-data.blade.php ENDPATH**/ ?>
Simpan