File: //var/www/quadcode-jobs/storage/framework/views/faf978728584a9403d5b6b17b360aa189f150d48.php
<?php
/**
* @var LengthAwarePaginator $vacancies
* @var array $filters
* @var array $filterUri
*/
use App\Models\LeverCategory;
use App\Models\LeverLocation;
use App\Repositories\LocationRepository;
use App\Repositories\VacancyRepository;
use Illuminate\Pagination\LengthAwarePaginator;
?>
<?php $__env->startSection('title', 'Jobs'); ?>
<?php $__env->startSection('description', 'Find out what jobs well, get the inside scoop on jobs, salaries, top office locations, and CEO insights.'); ?>
<?php $__env->startSection('keywords', 'Quadcode'); ?>
<?php $__env->startSection('content'); ?>
<main class="app-content search-jobs">
<?php if(!empty($modalTitle)): ?>
<script>
$(function () {
$(document).on('click', '.js-close-modal', function () {
$('.modal--form').removeClass('is-active');
history.pushState({}, '', window.location.origin + window.location.pathname)
});
});
</script>
<article class="modal modal--form is-active">
<div class="modal__wrapper">
<div class="modal__inner">
<div class="modal__close js-close-modal">
<svg width="18px" height="18px" viewbox="0 0 18 18" version="1.1" xmlns="http://www.w3.org/2000/svg">
<path d="M0.888889 1L15.1111 15" transform="translate(1 1)" fill="none" fill-rule="evenodd" stroke="currentColor" stroke-width="2" stroke-linecap="square"/>
<path d="M0.888889 1L15.1111 15" transform="matrix(-1 0 0 1 17 1)" fill="none" fill-rule="evenodd" stroke="currentColor" stroke-width="2" stroke-linecap="square"/>
</svg>
</div>
<div class="modal__content">
<div>
<div class="form__title">
<?php echo app('translator')->get('messages.Oops! It seems that the position has been filled.'); ?><br/>
<?php echo $modalTitle; ?>
</div>
</div>
</div>
</div>
</div>
</article>
<?php endif; ?>
<section class="category-page for-search-jobs" style="--category-page-bg: url(<?php echo e(asset('/files/search.jpg')); ?>);">
<header class="category-page__header">
<div class="container">
<h1>Jobs at Quadcode</h1>
<?php if(!empty($vacancies->total())): ?>
<div class="category-page__subtitle">
<span><?php echo e($vacancies->total()); ?></span> <?php echo e(trans_choice('messages.positions', $vacancies->total())); ?> <?php echo trans_choice('messages.in <span>_</span> location', LocationRepository::getCount()); ?>
</div>
<?php endif; ?>
</div>
</header>
<div class="category-page__content">
<div class="container">
<div class="search-jobs__inner">
<?php if(VacancyRepository::hasVacancies()): ?>
<div class="search-jobs__filter-picker">
<?php echo $__env->make('site.partials.search_form', ['showFilters' => true], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="search-jobs__filter">
<div class="filter">
<?php if(!empty($filters['locations'])): ?>
<div class="filter__group filter__group-result">
<div class="filter__group-name"><?php echo app('translator')->get('messages.Locations'); ?></div>
<div class="filter__group-items">
<?php $__currentLoopData = $filters['locations']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $id => $location): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php /** @var LeverLocation $location */ ?>
<?php
$uri = $filterUri;
unset($uri['location'][array_search($id, $uri['location'])]);
?>
<div class="filter__item">
<a href="<?php echo e(route('jobs', $uri)); ?>" class="tag" rel="noopener">
<div class="tag__control">
<svg aria-hidden="true" focusable="false" data-prefix="fal" data-icon="times" role="img" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"
class="svg-inline--fa fa-times fa-w-10 fa-3x">
<path fill="currentColor"
d="M193.94 256L296.5 153.44l21.15-21.15c3.12-3.12 3.12-8.19 0-11.31l-22.63-22.63c-3.12-3.12-8.19-3.12-11.31 0L160 222.06 36.29 98.34c-3.12-3.12-8.19-3.12-11.31 0L2.34 120.97c-3.12 3.12-3.12 8.19 0 11.31L126.06 256 2.34 379.71c-3.12 3.12-3.12 8.19 0 11.31l22.63 22.63c3.12 3.12 8.19 3.12 11.31 0L160 289.94 262.56 392.5l21.15 21.15c3.12 3.12 8.19 3.12 11.31 0l22.63-22.63c3.12-3.12 3.12-8.19 0-11.31L193.94 256z"
class=""></path>
</svg>
</div>
<div class="tag__value"><?php echo e($location->title); ?></div>
</a>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
<?php endif; ?>
<?php if(!empty($filters['categories'])): ?>
<div class="filter__group filter__group-result">
<div class="filter__group-name"><?php echo app('translator')->get('messages.Categories'); ?></div>
<div class="filter__group-items">
<?php $__currentLoopData = $filters['categories']; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $id => $category): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<?php /** @var LeverCategory $category */ ?>
<?php $uri = $filterUri; ?>
<?php unset($uri['category'][array_search($id, $uri['category'])]); ?>
<div class="filter__item">
<a href="<?php echo e(route('jobs', $uri)); ?>" class="tag" rel="noopener">
<div class="tag__control">
<?php echo $__env->make('site.icons.cross', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
<div class="tag__value"><?php echo e($category->title); ?></div>
</a>
</div>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
</div>
</div>
<?php endif; ?>
</div>
</div>
<?php endif; ?>
<div class="search-jobs__list">
<?php echo $__env->make('site.partials.vacancy_list', ['searchPage' => true, 'vacancies' => $vacancies], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
</div>
</div>
</div>
</div>
</section>
</main>
<?php $__env->stopSection(); ?>
<?php echo $__env->make('site.layouts.app', ['light_menu' => false], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH /var/www/quadcode-jobs/resources/views/site/jobs.blade.php ENDPATH**/ ?>