@extends('backoffice.layout.master') @section('setSectionTitle', $job->position) @section('setSectionDescription', $job->refOrganization->name . ' - ' . $job->refOrganizationsSite->refAddress->city . ', ' . $job->refOrganizationsSite->refAddress->refLocationCountry->name) @section('setSectionButton') {{ __('Torna indietro') }} @endsection @section('setContent') @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'), ]; $contractType = $contractTypeMap[$job->contract_type] ?? ''; $workModeMap = [ 'ON_SITE' => __('On-Site'), 'AGILE_WORK' => __('Remote'), 'SMART_WORKING' => __('Hybrid'), 'TELEWORK' => __('Telework'), 'HYBRID_WORK' => __('Hybrid'), ]; $workMode = $workModeMap[$job->work_mode] ?? ''; @endphp
{{ __('Pubblicato il') }} {{ $job->created_at->format('d/m/Y') }}
{{ __('Il tuo profilo verrà inviato all\'azienda') }}
@else
{{ __('Sede di lavoro') }}:
@php
$address = $job->refOrganizationsSite->refAddress;
$addressParts = [];
if($address->street) {
$addressParts[] = $address->street;
}
if($address->city) {
$addressParts[] = $address->city;
}
if($address->postal_code) {
$addressParts[] = $address->postal_code;
}
if($address->province) {
$addressParts[] = $address->province;
}
if($address->region) {
$addressParts[] = $address->region;
}
if($address->refLocationCountry) {
$addressParts[] = $address->refLocationCountry->name;
}
@endphp
@if(!empty($addressParts))
{{ implode(', ', $addressParts) }}
@endif
| {{ __('Tipo di contratto') }} | {{ $contractType }} |
| {{ __('Modalità di lavoro') }} | {{ $workMode }} |
| {{ __('Orario di lavoro') }} | {{ $job->working_hours }} |
| {{ __('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 |