@extends('backoffice.layout.master') @section('setSectionTitle', __(':num offerte di lavoro trovate', ['num' => $jobs->count()])) @section('setSectionButton') {{ __('Le mie candidature') }} @endsection @section('setContent')
@if($jobs->isEmpty())

{{ __('Nessuna offerta disponibile') }}

{{ __('Al momento non ci sono offerte di lavoro disponibili che corrispondono ai tuoi paesi di interesse.') }}

{{ __('Gestisci i tuoi paesi di interesse') }}
@else
@foreach($jobs as $job) @php $contractTypeMap = [ 'FULL_TIME_CONTRACT' => __('Full-Time'), 'PART_TIME_CONTRACT' => __('Part-Time'), 'PROJECT_CONTRACT' => __('Project-Based'), 'ON_CALL_CONTRACT' => __('On-Call'), 'APPRENTICESHIP_CONTRACT' => __('Apprenticeship'), 'TEMPORARY_AGENCY_WORK' => __('Temporary Agency Work'), ]; $job->contract_type = $contractTypeMap[$job->contract_type] ?? ''; $workModeMap = [ 'ON_SITE' => __('On-Site'), 'AGILE_WORK' => __('Remote'), 'SMART_WORKING' => __('Hybrid'), 'TELEWORK' => __('Telework'), 'HYBRID_WORK' => __('Hybrid'), ]; $job->work_mode = $workModeMap[$job->work_mode] ?? ''; @endphp

{{ $job->position }}

{{ $job->created_at->diffForHumans() }}
{{ $job->excerpt_description }}
{{ $job->contract_type }} {{ $job->work_mode }} @if(!empty($job->ral_min) && !empty($job->ral_max)) RAL @if(!empty($job->ral_min)) €{{ number_format($job->ral_min, 0, ',', '.') }} @endif - @if(!empty($job->ral_max)) €{{ number_format($job->ral_max, 0, ',', '.') }} @endif @endif
  • {{ $job->refOrganization->name }}
    {{ $job->refOrganizationsSite->refAddress->city }}, {{ $job->refOrganizationsSite->refAddress->refLocationCountry->name }}
@endforeach
@endif
@if($jobs->hasPages())
@endif @endsection