{{ $job->workExperience->work_experience }}
{{ $jobLocation->location }}
@if ($job->remote_job == 'yes')
@lang('recruit::modules.front.remoteJob')
@endif
@if($job->disclose_salary == 'yes')
@if($job->pay_type == 'Starting')
{{ currency_format($job->start_amount, $job->currency->id) }}
@elseif ($job->pay_type == 'Maximum')
{{ currency_format($job->start_amount, $job->currency->id) }}
@elseif ($job->pay_type == 'Exact Amount')
{{ currency_format($job->start_amount, $job->currency->id) }}
@elseif ($job->pay_type == 'Range')
{{ currency_format($job->start_amount, $job->currency->id) }} - {{ currency_format($job->end_amount, $job->currency->id) }}
@endif
@else
@lang('recruit::modules.job.salaryDisclosed')
@endif
@lang('recruit::modules.front.skill')
@foreach ($job->skills as $job_skill)
{{ $job_skill->skill->name }} @if(!$loop->last) • @endif
@endforeach
@if($job->job_description)
@lang('recruit::modules.front.description')
{!! nl2br($job->job_description ?? '--') !!}
@else
@endif