Server IP : 103.191.208.50 / Your IP : 216.73.216.53 Web Server : LiteSpeed System : Linux orion.herosite.pro 4.18.0-553.53.1.lve.el8.x86_64 #1 SMP Wed May 28 17:01:02 UTC 2025 x86_64 User : celkcksm ( 1031) PHP Version : 7.4.33 Disable Function : show_source, system, shell_exec, passthru, popen, exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/celkcksm/demoadmin.ncriptech.com/storage/framework/views/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
<?php $__env->startSection('content'); ?> <div class="d-sm-flex align-items-center justify-content-between mb-4"> <h1 class="h3 mb-0 text-gray-800"><?php echo e(__('Posts')); ?></h1> <a href="<?php echo e(route('admin_post_create')); ?>" class="d-none d-sm-inline-block btn btn-primary shadow-sm"><i class="fas fa-plus"></i> <?php echo e(__('Add Item')); ?> </a> </div> <div class="card shadow mb-4"> <div class="card-body"> <div class="table-responsive"> <table class="table table-bordered table-sm" id="dtable"> <thead> <tr> <th><?php echo e(__('SL')); ?></th> <th><?php echo e(__('Photo')); ?></th> <th><?php echo e(__('Title')); ?></th> <th><?php echo e(__('Category')); ?></th> <th><?php echo e(__('Action')); ?></th> </tr> </thead> <tbody> <?php $__currentLoopData = $posts; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $item): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($loop->iteration); ?></td> <td> <div class="photo-container"> <a href="<?php echo e(asset('uploads/'.$item->photo)); ?>" class="magnific"><img src="<?php echo e(asset('uploads/'.$item->photo)); ?>" alt=""></a> </div> </td> <td><?php echo e($item->title); ?></td> <td><?php echo e($item->rPostCategory->name); ?></td> <td> <a href="<?php echo e(route('admin_post_edit',$item->id)); ?>" class="btn btn-primary btn-sm"><i class="fas fa-edit"></i></a> <a href="<?php echo e(route('admin_post_destroy',$item->id)); ?>" class="btn btn-danger btn-sm" onClick="return confirm('<?php echo e(__('Are you sure?')); ?>')"><i class="fas fa-trash"></i></a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /opt/homebrew/var/www/phpscriptpoint/desix/desix/cms/resources/views/admin/post/index.blade.php ENDPATH**/ ?>