%PDF- %PDF-
Direktori : /var/www/html/digiprint/storage/framework/views/ |
Current File : /var/www/html/digiprint/storage/framework/views/ba70df8a63a76bb30a828129cb4e22c8cf055cea.php |
<?php $__env->startSection('content'); ?> <div class="container"> <div class="row"> <div class="col-md-12"> <div class="panel panel-default"> <div class="panel-heading"> <h1> <span>Categories</span> <a class="btn btn-success pull-right" href="<?php echo e(route('dashboard.categories.details', 'new')); ?>"> Create </a> </h1> </div> <table class="table table-responsive"> <thead> <th>Name</th> <th>Slug</th> <th>Short Description</th> <th class="text-right">Actions</th> </thead> <tbody> <?php $__currentLoopData = $categories; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($category->name); ?></td> <td><?php echo e($category->slug); ?></td> <td><?php echo e($category->short_description); ?></td> <td class="text-right"> <a class="btn btn-warning" href="<?php echo e(route('dashboard.categories.details', $category->id)); ?>">Edit</a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> </div> </div> <?php $__env->stopSection(); ?> <?php echo $__env->make('dashboard.layouts.app', array_except(get_defined_vars(), array('__data', '__path')))->render(); ?>