@extends('backoffice.layout.master') @section('setSectionTitle', __('Le mie candidature')) @section('setSectionButton') {{ __('Torna indietro') }} @endsection @if(!empty($jobs) && $jobs->isNotEmpty()) @section('setSectionDescription', __('Elenco delle offerte di lavoro per cui hai presentato domanda.')) @else @section('setSectionDescription', __('Al momento non hai presentato candidature.')) @endif @section('setContent')
@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 }}

{{ __('Candidatura inviata il') }} {{ $job->applied_at->format('d/m/Y') }}
{{ $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
@if($jobs->hasPages())
@endif
@if($jobs->hasPages())
@endif @endsection