관리-도구
편집 파일: 7595bda81700964424be12bb83cbc384f6be81ec.php
<?php use Illuminate\Support\Facades\Auth; use App\Models\Jobpost; use App\Models\Company; use App\Http\Controllers\JobpostController; $allJobs = Jobpost::all(); ?> <?php $__env->startSection('content'); ?> <!-- Comnpany detail Section Start --> <section class="company-detail"> <div class="container"> <div class="row justify-content-center"> <div class="col-lg-10"> <div class="company-detail-txt"> <?php $company = Company::where('company_name',$data->company_name)->first(); ?> <?php if($company != ''): ?> <img src="<?php echo e(asset('public/uploads/companyprofiles/'.$company->company_profile_image)); ?>" alt=""> <?php endif; ?> <!--<img src="images/job-sugggest-box-img.JPG" alt="">--> <h2><?php echo e($data->company_name); ?> - <?php echo e($data->job_title); ?> Required</h2> <div class="comapny-address"> <a href="#"><?php echo e($data->company_name); ?></a> <a href="#"><?php echo e($data->contact_person); ?></a> </div> <div class="box-scroll"> <div class="dollar-per-hour"> <span><i class='bx bxs-dollar-circle'></i></span> <h6>$<?php echo e($data->min_salary); ?>-$<?php echo e($data->max_salary); ?></h6> </div> <p><?php echo e($data->job_description); ?></p> <div class="skills d-none"> <h6>Skills & Responsibilities:</h6> <p>Ability to read and understand data and document collected information.</p> <ul> <li>Must have professional communication skills.</li> <li>Conduct field and laboratory testing of soils, aggregate, and concrete.</li> <li>Generate field records of test results and related construction activities for project compliance documentation.</li> <li>This position requires working in the field and testing in the lab.</li> <li>We need employees with a "can do" attitude who can work flexible hours.</li> <li>Perform other duties as assigned by supervisor. Work outdoors in different weather conditions.</li> <li>Lift and carry up to 60 pounds.</li> <li>Responsible for mid-size truck.</li> <li>Responsible, reliable, accurate, dedicated, honest</li> </ul> </div> <div class="requirements"> <h6>Requirements</h6> <ul> <p>Required Qualification : <span><?php echo e($data->qualification); ?></span></p> <p>Required Experience : <span><?php echo e($data->min_experience); ?>-<?php echo e($data->max_experience); ?></span></p> <li>Willing to work a flexible schedule, including overtime, evenings, and/or weekends </li> <!--<li>Valid driver's license</li>--> <!--<li>Clear MVR</li>--> <!--<li>Clean background and drug screen</li>--> <!--<li>Ability to work independently and as a team member</li>--> <!--<li>Pay starts at $20 per hour depending on experience and industry certifications.</li>--> </ul> </div> <div class="benefits d-none"> <h6>Benefits</h6> <p>Health, dental, vision and life insurance are offered 401(k) with a match PTO Our client pays for ACI certifications for our technicians. Successful completion comes with a pay raise! </p> </div> <p>PandoLogic. Keywords: <?php echo e($data->keywords); ?>, Location: <?php echo e($data->job_location); ?></p> <div class="report-job d-none"> <span><i class='bx bx-message-error'></i></span> <a href="#">Report Job</a> </div> <div class="post-date"> <p>Work Place Type: <span><?php echo e($data->workplace_type); ?></span></p> <p>Job Type: <span><?php echo e($data->job_type); ?></span></p> <p>Total Vacancy: <span><?php echo e($data->no_of_vacancy); ?></span></p> <p>Posted date: <span><?php echo e($data->created_at->format('Y-m-d')); ?></span></p> <p>Expiry date: <span><?php echo e($data->job_post_expiry_date); ?></span></p> <!--<a href="#">View all Jobs at <?php echo e($data->company_name); ?></a>--> </div> </div> <div class="job-apply-btn"> <form action="<?php echo e(url('/apply-to-job')); ?>" method="POST"> <?php echo csrf_field(); ?> <input type="hidden" name="user_id" value="<?php echo e((Auth::check())? Auth::user()->id : 1); ?>"> <input type="hidden" name="job_id" value="<?php echo e($data->id); ?>"> <?php if(Auth::check()): ?> <?php $checkAlreadyApplied = JobpostController::checkAlreadyApplied($data->id)?? ''; ?> <?php if($checkAlreadyApplied != ''): ?> <a href="#" disabled>Already Applied</a> <?php else: ?> <input type="submit" value="Apply Now"> <?php endif; ?> <?php else: ?> <a href="<?php echo e(url('/sign_in')); ?>" class="disabled">Login To Apply</a> <?php endif; ?> </form> </div> </div> </div> </div> </div> </section> <!-- Comnpany detail Section End --> <?php $__env->stopSection(); ?> <?php echo $__env->make('theme.saintsaccessories.websiteEcom', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /home/eraas/public_html/resources/views/theme/saintsaccessories/job_details.blade.php ENDPATH**/ ?>