📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 01:00:01
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
storage
/
framework
/
views
📍 /home/orkouolp/web/testing.orkobd/laravel/storage/framework/views
🔄 Refresh
✏️
Editing: cd003b8689c33a88b9226f7dfd52be66.php
Writable
<?php $__env->startSection('contents'); ?> <section class="section"> <div class="section-header"> <h1>Industry Type</h1> </div> <div class="section-body"> <div class="col-12"> <div class="card"> <div class="card-header"> <h4>All Industry Types</h4> <div class="card-header-form"> <form action="<?php echo e(route('admin.industry-types.index')); ?>" method="GET"> <div class="input-group"> <input type="text" class="form-control" placeholder="Search" name="search" value="<?php echo e(request('search')); ?>"> <div class="input-group-btn"> <button type="submit" style="height:40px;" class="btn btn-primary"> <i class="fas fa-search"></i></button> </div> </div> </form> </div> <a href="<?php echo e(route('admin.industry-types.create')); ?>" class="btn btn-primary"> <i class="fas fa-plus-circle"></i> Create new</a> </div> <div class="card-body p-0"> <div class="table-responsive"> <table class="table table-striped"> <tr> <th>Name</th> <th>slug</th> <th style="width:12%;">Action</th> </tr> <tbody> <?php $__currentLoopData = $industryTypes; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $type): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?> <tr> <td><?php echo e($type->name); ?></td> <td><?php echo e($type->slug); ?></td> <td> <a href="<?php echo e(route('admin.industry-types.edit', $type->id)); ?>" class="btn btn-sm btn-primary"><i class="fas fa-edit"></i></a> <a href="<?php echo e(route('admin.industry-types.destroy', $type->id)); ?>" class="btn btn-sm btn-danger delete-item"><i class="fas fa-trash-alt"></i></a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?> </tbody> </table> </div> </div> <div class="card-footer text-right"> <nav class="d-inline-block"> <?php if($industryTypes->hasPages()): ?> <?php echo e($industryTypes->withQueryString()->links()); ?> <?php endif; ?> </nav> </div> </div> </div> </div> </section> <?php $__env->stopSection(); ?> <?php echo $__env->make('admin.layouts.master', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/orkouolp/web/testing.orkobd/laravel/resources/views/admin/industry-type/index.blade.php ENDPATH**/ ?>
💾 Save Changes
❌ Cancel