{{-- Do your work, then step back. --}} @section('seoTitle') {{ $title }} @ {{ env('SEO_NAME') }} @endsection @section('metaDescription') {{-- {{ strip_tags(substr($job->description, 0, 150)) }} --}} @endsection {{-- --}}
{{-- @include('includes.breadcrumb') --}} Home > {{ $title }}
@if (!is_null($industriesWithJobCount))

Jobs By Category

    @foreach ($industriesWithJobCount as $industryWithJobCount) @if ($industryWithJobCount->activeAndNotExpiredJobs->count() > 0)
  • {{ $industryWithJobCount->name }} ({{ $industryWithJobCount->activeAndNotExpiredJobs->count() }})
  • @endif @endforeach
@endif {{-- {{ gettype($citiesWithJobCount) }} --}} @if (!is_null($citiesWithJobCount))

Jobs By City

@endif @if (!is_null($statesWithJobCount))

Jobs By State

@endif
@if (!is_null($jobs))

{{ $title }}

{{-- {{ $jobs }} --}} @foreach ($jobs as $job) {{-- --}} @endforeach
@endif @if (!is_null($selectedJob))

{{ $selectedJob->title }}

Job Details

@if($selectedJob->is_verified) Verified @endif
{{-- --}}
Company: {{ $selectedJob->company_name }}
Location: {{ $selectedJob->city }}, {{ $selectedJob->state }}
Salary: {{ $selectedJob->salary_from ? $selectedJob->salary_from : 'Undisclosed' }}
Experience: @if (isset($job->experience_min)) {{ $job->experience_min }} - {{ $job->experience_max }} Year @else @endif
Job Type: @empty ($job->job_type_id) @else {{ getJobTypeByJobTypeId($job->job_type_id) }} @endempty
Gender: {{ $selectedJob->gender ? $selectedJob->gender : 'Any' }}
Posted On: {{ Carbon::parse($job->updated_at)->format('d-M-Y'); }}

Job Description

{!! $selectedJob->description !!}
@endif @if (method_exists($jobs, 'links'))
{{ $jobs->links() }}
@endif