Location:
{{ $job->city }}, {{ $job->state }}
@if($job->is_verified)
Verified
@endif
{{--
Company:
{{ getEmployerByUserId($job->user_id) }}
--}}
Company:
{{ $job->company_name }}
Salary (Annually):
@if($job->salary_from)
Rs. {{ $job->salary_from }}
@else
Undisclosed
@endif
Industry: {{ getIndustryByIndustryId($job->industry_id) }}
Designation:
@empty($job->designation)
@else
{{ $job->designation }}
@endempty
Experience:
@empty ($job->experience_min)
@else
{{ $job->experience_min }} - {{ $job->experience_max }} Year
@endempty
{{--
Job Shift: {{ getJobShiftByJobShiftid($job->job_shift_id) }}
--}}
Posted On: {{ Carbon::parse($job->updated_at)->format('d-M-Y') }}
{{--
{!! showAddToFavoriteJobButton($job->id) !!}
{!! showApplyJobButton($job->id) !!}
@if(Auth::user())
@include('user.candidate.applyJobModal')
@endIf
--}}