![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/demo.cartinsight.co/storage/framework/views/ |
<?php $__env->startSection('title', $title); ?> <?php $__env->startSection('content_header'); ?> <?php $__env->startComponent('components.content_header'); ?> <?php $__env->slot('page_title'); ?> <?php echo e($title); ?> <?php $__env->endSlot(); ?> <?php $__env->slot('breadcrumb'); ?> <?php echo e(Breadcrumbs::render('reports')); ?> <?php $__env->endSlot(); ?> <?php echo $__env->renderComponent(); ?> <?php $__env->stopSection(); ?> <?php $__env->startSection('css'); ?> <style> .list-group li:nth-child(odd) { background-color: #fbfbfb; } </style> <?php $__env->stopSection(); ?> <?php $__env->startSection('content'); ?> <div class="row"> <div class="col-md-6"> <?php $__env->startComponent('components.box',['box_class'=>'box-success']); ?> <div id="reports-list"> <div class="row"> <div class="col-md-6"> <?php echo CoralsForm::text('', '', false, null,['class'=>'search','placeholder'=>'Find a report...']); ?> </div> </div> <ul class="list list-group"> <?php $__currentLoopData = collect(Reports::getReports())->sortBy('title'); $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $report): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <li class="list-group-item d-flex justify-content-between"> <div> <a href="<?php echo e(url(data_get($report,'resource_url'))); ?>" class="name"> <?php echo e(data_get($report, 'title')); ?> </a> </div> <div> <a href="<?php echo e(url(data_get($report,'resource_url'))); ?>" class="btn btn-sm btn-success"> <i class="fa fa-eye"></i> Open </a> <a href="<?php echo e(data_get($report, 'resource_url')); ?>/manage-scheduled-reports" class="btn btn-sm btn-info"> <i class="fa fa-calendar"></i> Manage Schedule </a> </div> </li> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </ul> </div> <?php echo $__env->renderComponent(); ?> </div> </div> <?php $__env->stopSection(); ?> <?php $__env->startSection('js'); ?> <?php echo Html::script('assets/modules/report/list.min.js'); ?> <script> $(document).ready(function () { var monkeyList = new List('reports-list', { valueNames: ['name'] }); }) </script> <?php $__env->stopSection(); ?> <?php echo $__env->make('layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/corals/demo.woobi.io/vendor/corals/woocommerce-reporting/src/Report/resources/views/reports/list.blade.php ENDPATH**/ ?>