HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //var/www/quadcode-jobs/storage/framework/views/d7e9f08da42ee434e1e7bb2b9b16adace5f0e251.php
<?php
    $showCategory = $showCategory ?? true;
    $showLocation = $showLocation ?? true;
    $searchPage = $searchPage ?? false;
?>

<article class="joblist">
    <?php if(count($jobs)): ?>
    <div class="joblist__items">
        <div class="vacancy">
            <div class="vacancy__row as-heading">
                <div class="vacancy__job"><?php echo app('translator')->get('messages.Job'); ?></div>
                <?php if($showCategory): ?>
                <div class="vacancy__category"><?php echo app('translator')->get('messages.Department'); ?></div>
                <?php endif; ?>
                <?php if($showLocation): ?>
                <div class="vacancy__location"><?php echo app('translator')->get('messages.Location'); ?></div>
                <?php endif; ?>
            </div>

            <?php $__currentLoopData = $jobs; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $job): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
                <?php
                    if (app()->getLocale() === DEFAULT_LOCALE) {
                        $jobShowRoute = route('job.show', [$job->id]);
                        $categoryShowRoute = route('category.show', [$job->category->slug]);
                        $locationShowRoute = route('location.show', [$job->location->slug]);
                    } else {
                        $jobShowRoute = route('job.show.locale', [app()->getLocale(), $job->id]);
                        $categoryShowRoute = route('category.show.locale', [app()->getLocale(), $job->category->slug]);
                        $locationShowRoute = route('location.show.locale', [app()->getLocale(), $job->location->slug]);
                    }
                ?>
            <div class="vacancy__row">
                <div class="vacancy__job">
                    <a href="<?php echo e($jobShowRoute); ?>" rel="noopener"><?php echo e($job->getTitle()); ?></a>
                </div>
                <?php if($showCategory): ?>
                    <div class="vacancy__category">
                        <a class="link" href="<?php echo e($categoryShowRoute); ?>" rel="noopener"><?php echo e($job->getCategoryTitle()); ?></a>
                    </div>
                <?php endif; ?>
                <?php if($showLocation): ?>
                    <div class="vacancy__location">
                        <a class="link" href="<?php echo e($locationShowRoute); ?>" rel="noopener"><?php echo e($job->getLocationTitle()); ?></a>
                    </div>
                <?php endif; ?>
            </div>
            <?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
        </div>
    </div>
        <?php echo $__env->make('site.partials.vacancy_list_pagination', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>

    <?php else: ?>
        <?php echo $__env->make('site.partials.vacancy_list_empty', ['subtitle' => $item->title, 'searchPage' => $searchPage], \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?>
    <?php endif; ?>
</article>
<?php /**PATH /var/www/quadcode-jobs/resources/views/site/partials/vacancy_list.blade.php ENDPATH**/ ?>