📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 12:26:42
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
storage
/
framework
/
views
📍 /home/orkouolp/web/testing.orkobd/laravel/storage/framework/views
🔄 Refresh
✏️
Editing: a2f5c69304be873c91eecc01bc62c57e.php
Writable
<div class="tab-pane fade show" id="pills-experience" role="tabpanel" aria-labelledby="pills-experience-tab"> <div> <div class="d-flex justify-content-between"> <h4>Experience</h4> <button class="btn btn-primary" onclick="$('#ExperienceForm').trigger('reset'); editId = ''; editMode = false;" data-bs-toggle="modal" data-bs-target="#experienceModal">Add Experience</button> </div> <br> <table class="table table-striped"> <thead> <tr> <th>Company</th> <th>Department</th> <th>Designation</th> <th>Period</th> <th style="width: 16%;">Action</th> </tr> </thead> <tbody class="experience-tbody"> <?php $__empty_1 = true; $__currentLoopData = $candidateExperiences; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $experience): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <tr> <td><?php echo e($experience->company); ?></td> <td><?php echo e($experience->department); ?></td> <td><?php echo e($experience->designation); ?></td> <td><?php echo e($experience->start); ?> - <?php echo e($experience->currently_working? 'Current': $experience->end); ?></td> <td> <a href="<?php echo e(route('candidate.experience.edit', $experience->id)); ?>" class="btn btn-sm btn-primary edit-experience" data-bs-toggle="modal" data-bs-target="#experienceModal"><i class="fas fa-edit"></i></a> <a href="<?php echo e(route('candidate.experience.destroy', $experience->id)); ?>" class="btn btn-sm btn-danger delete-experience" ><i class="fas fa-trash-alt"></i></a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <tr> <td colspan="5" class="text-center">No Data Found</td> </tr> <?php endif; ?> </tbody> </table> </div> <br><br> <div> <div class="d-flex justify-content-between"> <h4>Education</h4> <button class="btn btn-primary" onclick="$('#EducationForm').trigger('reset'); editId = ''; editMode = false;" data-bs-toggle="modal" data-bs-target="#educationModal">Add Education</button> </div> <br> <table class="table table-striped"> <thead> <tr> <th>Level</th> <th>Degree</th> <th>Year</th> <th style="width: 16%;">Action</th> </tr> </thead> <tbody class="education-tbody"> <?php $__empty_1 = true; $__currentLoopData = $candidateEducation; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $education): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); $__empty_1 = false; ?> <tr> <td><?php echo e($education->level); ?></td> <td><?php echo e($education->degree); ?></td> <td><?php echo e($education->year); ?></td> <td> <a href="<?php echo e(route('candidate.education.edit', $education->id)); ?>" class="btn btn-sm btn-primary edit-education" data-bs-toggle="modal" data-bs-target="#educationModal"><i class="fas fa-edit"></i></a> <a href="<?php echo e(route('candidate.education.destroy', $education->id)); ?>" class="btn btn-sm btn-danger delete-education" ><i class="fas fa-trash-alt"></i></a> </td> </tr> <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); if ($__empty_1): ?> <tr> <td colspan="5" class="text-center">No Data Found</td> </tr> <?php endif; ?> </tbody> </table> </div> </div> <?php /**PATH /home/orkouolp/web/testing.orkobd/laravel/resources/views/frontend/candidate-dashboard/profile/sections/experience-section.blade.php ENDPATH**/ ?>
💾 Save Changes
❌ Cancel