Viewing file: 45d1a7b4e2eb6f1f222c769b9cb1fadb.php (4.81 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php $__env->startSection('title'); ?> <?php echo e(__('Categories')); ?>
<?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(__('Categories')); ?></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(__('Categories')); ?>
</h5> <div class="u-table-res"> <table class="table table-bordered mb-0"> <thead> <tr> <th><?php echo e(__('Image')); ?></th> <th><?php echo e(__('Name')); ?></th> <th><?php echo e(__('Status')); ?></th> </tr> </thead> <tbody> <?php if($categories->isNotEmpty()): ?> <?php $__currentLoopData = $categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td> <img width="60" height="40" src="<?php echo e($category->photo ? asset('assets/images/'.$category->photo) : asset('assets/images/placeholder.png')); ?>" alt="Image Not Found"> </td> <td><?php echo e($category->name); ?></td> <td> <span><?php echo e($category->status); ?></span> </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 $categories; ?>
</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/category/index.blade.php ENDPATH**/ ?>
|