Company Name:
{{ !empty($job->getCompanyprofile)?$job->getCompanyprofile->company_name :'' }}
Qualification:
@if(!is_null($job['qualcationDetails']) && count($job['qualcationDetails']) != 0 )
@php $i=1; @endphp
@foreach($job['qualcationDetails'] as $qualcation)
@if($i==1)
{{ $qualcation->degree->name or "Any Degree" }} - {{ $qualcation->specialization->specialization or "Any Specialization"}}
@else
, {{ $qualcation->degree->name or "Any Degree" }} - {{ $qualcation->specialization->specialization or "Any Specialization"}}
@endif
@php $i++; @endphp
@endforeach
@else
@endif
No. of Position:
@if($job['numberofpostion'] !=0)
{{ $job['numberofpostion'] }}
@else
Not Mentioned
@endif
@php $locations = HireMeeHelper::JobLocations($job->locations()->pluck('loc_id')->toArray()); @endphp
Location:
@if(!empty($locations))
{{ HireMeeHelper::JobLocations($job->locations()->pluck('loc_id')->toArray()) }}
@else
Not Updated
@endif
Job Description:
{!! substr(ucfirst(strip_tags($job->description)),0,100) !!}...