One Hat Cyber Team
Your IP :
18.218.206.106
Server IP :
104.21.32.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 :
b76c008d91e34f5e583f1a0f98b09981.php
<?php $__env->startSection('styles'); ?> <style> .edit,.delete{ border:none !important; margin:1em; } .edit{ color:#136BAF; } .delete{ color:red; } </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')); ?>"> <?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">In Transit</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"> <div class="card-block"> <table id="example" class="display table table-striped table-bordered" cellspacing="0" width="100%"> <thead> <tr> <th>PO ID</th> <th>Item Name</th> <th>Item Code</th> <th>PO Rate</th> <th>Sales Rate</th> <th>Purchase Date</th> <th>TCS Rate</th> <th>HSN Code</th> <th>Quantity</th> <th>Status</th> <th>Action</th> </tr> </thead> <tbody> <?php $__currentLoopData = $pois; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $poi): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($poi->purchaseOrder->po_id); ?></td> <td><?php echo e($poi->item->name); ?></td> <td><?php echo e($poi->item->code); ?></td> <td><?php echo e($poi->item->po_rate); ?></td> <td><?php echo e($poi->item->sale_rate); ?></td> <td><?php echo e($poi->purchaseOrder->po_date); ?></td> <td><?php echo e($poi->item->tcs_rate); ?></td> <td><?php echo e($poi->item->hsn_code); ?></td> <td><b><?php echo e($poi->quantity); ?></b></td> <td><?php echo e(ucfirst($poi->status)); ?></td> <td> <?php if($poi->status == 'pending'): ?> <a href="<?php echo e(route('accept-poi',[$poi->id])); ?>" class="btn btn-success edit">Accept </a> <?php else: ?> <a href="" class="btn btn-primary edit">Accepted </a> <?php endif; ?> </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> $(function() { $('#example').DataTable({ scrollX: true }); }); </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/intransit/index.blade.php ENDPATH**/ ?>