Viewing file: 8ba7831ae4462569db9ddd3150472f1f.php (4.94 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(__('Products')); ?>
<?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="container mt-5 mb-5"> <div class="row"> <div class="col-12"> <!-- Page Title--> <div class="page-title"> <div class="container"> <div class="row"> <div class="col-lg-12"> <ul class="breadcrumbs"> <li><a href="<?php echo e(route('front.index')); ?>"><?php echo e(__('Home')); ?></a> </li> <li class="separator"></li> <li><?php echo e(__('Products')); ?></li> </ul> </div> </div> </div> </div> <!-- Page Content--> <div class="container-fluid padding-bottom-3x mb-1"> <div class="row"> <?php echo $__env->make('includes.user_sitebar', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?> <div class="col-lg-9 col-12 new_user_profile mt-3"> <div class="card"> <div class="card-body"> <h5> <?php echo e(__('Products')); ?>
</h5> <div class="u-table-res"> <table class="table table-bordered mb-0"> <thead> <tr> <th><?php echo e(__('Name')); ?></th> <th><?php echo e(__('Category')); ?></th> <th><?php echo e(__('Provider')); ?></th> <th><?php echo e(__('Process Time')); ?></th> <th><?php echo e(__('Price')); ?></th> <th><?php echo e(__('Status')); ?></th> </tr> </thead> <tbody> <?php if($products->isNotEmpty()): ?> <?php $__currentLoopData = $products; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $product): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($product->name); ?></td> <td><?php echo e($product->category_code); ?></td> <td><?php echo e($product->provider_code); ?></td> <td><?php echo e($product->process_time); ?></td> <td><?php echo e($product->price); ?></td> <td><?php echo e($product->status); ?></td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> <?php else: ?> <tr class="text-center"> <td colspan="6"> No Data Available</td> </tr> <?php endif; ?> </tbody> </table>
<div class="row"> <div class="col-md-12 mt-2"> <div class="text-right float-right"> <?php echo $products; ?>
</div> </div> </div> </div> </div> </div>
</div> </div> </div> </div> </div> </div>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('master.front', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/picotech/domains/game.picotech.app/public_html/core/resources/views/user/products/index.blade.php ENDPATH**/ ?>
|