@extends('website.layouts.app') @section('description'){{ strip_tags($job->description) }}@endsection @section('og:image'){{ $job->company->logo_url }}@endsection @section('title'){{ $job->title }}@endsection @section("ld-data") @php $employment_type = App\Services\Jobs\GoogleJobPostingFormatter::formatJobType(optional($job->job_type)->slug ?? ""); $salary_type = App\Services\Jobs\GoogleJobPostingFormatter::formatSalaryType($job->salary_type->slug); $currency = currentCurrency()->code; $min_salary = $job->max_salary ? currencyConversion($job->max_salary, $currency, "USD"):0; $max_salary = $job->max_salary ? currencyConversion($job->max_salary, $currency, "USD"):0; @endphp @endsection @section('main') @php $lat = $job->lat; $long = $job->long; @endphp
{{ __('job_description') }}
{!! $job->description !!}

{{ __('salary') }}

@if ($job->salary_mode == 'range')

{{ getFormattedNumber($job->min_salary) }} - {{ getFormattedNumber($job->max_salary) }} {{ currentCurrencyCode() }}

@else
{{ $job->custom_salary }}
@endif

{{ $job->salary_type->name }} {{ __('based') }}

@if ($job->is_remote)

{{ __('remote_job') }}

{{ __('worldwide') }}

@else

{{ __('location') }}

{{ $job->full_address }}

@endif
@if ($job->benefits && count($job->benefits))

@foreach ($job->benefits as $benefit) {{ $benefit->name }} @endforeach
@endif
{{ __('job_overview') }}
{{ __('job_posted') }}:
{{ Carbon\Carbon::parse($job->created_at)->diffForHumans() }}
@if ($job->deadline_active)
{{ __('job_expire') }}:
{{ $job->days_remaining }}
@endif
{{ __('job_type') }}
{{ $job->job_type ? $job->job_type->name : '' }}
{{ __('job_role') }}
{{ $job->role ? $job->role->name : '' }}
@if ($job->education)
{{ __('education') }}
{{ $job->education ? $job->education->name : '' }}
@endif @if ($job->experience)
{{ __('experience') }}
{{ $job->experience ? $job->experience->name : '' }}
@endif

{{ __('share_this_job') }}:

  • {{ __('copy_links') }}
@if ($job->tags && count($job->tags))

{{ __('job_tags') }}:

@foreach ($job->tags as $tag) {{ $tag->name }} @endforeach
@endif
{{ __('location') }} ({{ $job->full_address }})
@php $map = setting('default_map'); @endphp @if ($map == 'map-box')
@elseif ($map == 'google-map')
@else
@endif
@if (count($related_jobs))

@endif @endsection @section('css') @include('map::links') @endsection @section('script') {{-- Leaflet --}} @include('map::scripts') @yield('child_js') @endsection