@forelse($jobs as $job)
@if(!is_null($job->corporate->companyLogo)) {{ $job->corporate->company_name }} @else {{ $job->corporate->company_name }} @endif

{{ ucwords($job->job_title) }} @if($job->is_post_completed < 4)Draft@endif

{{ $job['category']->industry_name ?? " Not Updated"}}

@php $skills = HireMeeHelper::JobSkills($job->skills()->pluck('skill_id')->toArray()); @endphp
Skills:
@if(!empty($skills))
{{ $skills }}
@else Not Updated @endif
@if($job->interview_process==2)

Last date to Apply : {{ Carbon\Carbon::parse($job->last_date)->format('dS M Y') }}

@elseif($job->interview_process==1)

Walk-in date : {{ Carbon\Carbon::parse($job->start_date)->format('dS M Y') }} to {{ Carbon\Carbon::parse($job->end_date)->format('dS M Y') }}

@elseif($job->interview_process==3)

@if($job->assessment_date!=NULL) Campus drive date:{{ Carbon\Carbon::parse($job->assessment_date)->format('dS M Y') }} @else Campus drive date:Not Updated @endif

@endif
@if($job->checkjob !=null) Job applied @else @endif
{{ $job->getCompanyprofile ? $job->getCompanyprofile->company_name : 'Not updated' }}
@if($job['numberofpostion'] !=0) @else @endif
@php $locations = HireMeeHelper::JobLocations($job->locations()->pluck('loc_id')->toArray()); @endphp @if(!empty($locations))
@endif
{!! substr(ucfirst(strip_tags($job->description)),0,100) !!}
@empty

No Records Found

Sorry! We can't find any records matching your criteria
@endforelse