@php $already_applide_for_job = Auth::user()->candidate->job_applications()->where('school_job_id', $job->id)->exists() @endphp

{{$job->title}}

@foreach ($job->job_contract_type as $type)

{{$type->title}}

@endforeach
# @if($job->city_model) {{$job->city_model->title}} @endif @if($job->region) , {{$job->region->title}} @endif
{{--
#Full-Time
--}}
{{\Carbon\Carbon::parse($job->created_at)->diffForHumans()}}
@if($job->experience)

Experience

{{$job->experience}}

@endif @if($job->job_applied_for && count($job->job_applied_for) > 0)

Work Level

@foreach ($job->job_applied_for as $job_applied)

{{$job_applied->title}}

@endforeach
@endif @if($job->salery_from)

Offer Salary

${{$job->salery_from}}/ @if($job->salery_to) {{$job->salery_to}} @endif month

@endif
{!!$job->description!!}
@livewire('dashboard.candidate.apply-for-job')