/
home
/
sjslayjy
/
public_html
/
assets
/
storage
/
framework
/
views
/
Upload File
HOME
<?php $__env->startPush('plugin-styles'); ?> <!-- <?php echo Html::style('/assets/plugins/plugin.css'); ?> --> <?php echo Html::style('//cdn.datatables.net/1.10.23/css/jquery.dataTables.min.css'); ?> <?php $__env->stopPush(); ?> <?php $__env->startSection('content'); ?> <div class="row"> <div class="col-lg-12 grid-margin"> <div class="card"> <div class="card-body"> <h4 class="card-title">Stock Transfer Notes</h4> <div class="table-responsive"> <table class="table table-striped myTable"> <thead> <tr> <th> STN Number </th> <th> STO Number </th> <th> Indent No</th> <th> Ware House</th> <th> Status</th> <th> STN Date</th> <th> Print </th> </tr> </thead> <tbody> <?php $__currentLoopData = $stns; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $stn): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td class="font-weight-medium"> <?php echo e($stn->stn_no); ?> </td> <td><?php echo e($stn->get_sto($stn->sto_id)->sto_number); ?></td> <td><?php echo e($stn->get_sto($stn->sto_id)->indent_no); ?></td> <td><?php echo e($stn->to_warehouse); ?></td> <td><?php echo e($stn->status); ?></td> <td><?php echo e($stn->stn_date); ?></td> <td><a href="<?php echo e(url('admin/print-stn/'.$stn->id.'/Original')); ?>" target="_blank">Original</a> | <a href="<?php echo e(url('admin/print-stn/'.$stn->id.'/Duplicate')); ?>" target="_blank">Duplicate</a></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startPush('plugin-scripts'); ?> <?php echo Html::script('/assets/plugins/chartjs/chart.min.js'); ?> <?php echo Html::script('/assets/plugins/jquery-sparkline/jquery.sparkline.min.js'); ?> <?php $__env->stopPush(); ?> <?php $__env->startPush('custom-scripts'); ?> <?php echo Html::script('/assets/js/dashboard.js'); ?> <?php echo Html::script('//cdn.datatables.net/1.10.23/js/jquery.dataTables.min.js'); ?> <script type="text/javascript"> $(document).ready( function () { var myTable = $('.myTable').dataTable(); } ); </script> <?php $__env->stopPush(); ?> <?php echo $__env->make('layout.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/assets/resources/views/admin/indent/stock-transfer-notes.blade.php ENDPATH**/ ?>