Sid Gifari File Manager
🏠 Root
/
home2
/
meumer25
/
painelsexshoptentacao.meumercado.app
/
storage
/
framework
/
views
/
Editing: 2145e22b92b5a429d981efb54a5111047de7a042.php
<link rel="stylesheet" href="https://cdn.datatables.net/1.11.1/css/jquery.dataTables.min.css"> <style> .dt-button{ display: none; } .page-link{ color: white; } </style> <div class="row"> <div class="col-12 pr-4 pl-4"> <table class="table" id="datatable"> <thead> <tr> <th><?php echo e(\App\CentralLogics\translate('#')); ?> </th> <th><?php echo e(\App\CentralLogics\translate('order')); ?></th> <th><?php echo e(\App\CentralLogics\translate('date')); ?></th> <th><?php echo e(\App\CentralLogics\translate('qty')); ?></th> <th style="width: 10%"><?php echo e(\App\CentralLogics\translate('amount')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $data; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $key=>$row): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td class=""> <?php echo e($key+1); ?> </td> <td class=""> <a href="<?php echo e(route('admin.orders.details',['id'=>$row['order_id']])); ?>"><?php echo e($row['order_id']); ?></a> </td> <td><?php echo e(date('d M Y',strtotime($row['date']))); ?></td> <td><?php echo e($row['quantity']); ?></td> <td><?php echo e(Helpers::set_symbol($row['price'])); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> <script type="text/javascript"> $(document).ready(function () { $('input').addClass('form-control'); }); // INITIALIZATION OF DATATABLES // ======================================================= var datatable = $.HSCore.components.HSDatatables.init($('#datatable'), { dom: 'Bfrtip', "iDisplayLength": 25, }); </script> <?php /**PATH /home2/meumer25/painelestilopetshop.meupet.app/resources/views/admin-views/report/partials/_table.blade.php ENDPATH**/ ?>
Save
Cancel