@if (isset($job)) @section('seoTitle') {{ Str::title($job->title) }} @ {{ env('SEO_NAME') }} @endsection @section('metaDescription') {{ strip_tags(substr($job->description, 0, 150)) }}@endsection @section('title') {{ $job->title }} @endsection @php $currentUrl = url()->current(); $currentUrl = explode('/', $currentUrl); $currentUrl = end($currentUrl); $currentUrl = str_replace('-', ' ', $currentUrl); $currentUrl = ucwords($currentUrl); $currentUrl = substr($currentUrl, 0, strrpos($currentUrl, ' ')); @endphp
Home > Jobs > {{ $currentUrl }}
{{-- --}}
@if($job->is_posted_by_admin == 1)
Hot Job
@endif

Location:
{{ $job->city }}, {{ $job->state }}

Company:
{{ $job->company_name }}

Salary:
@empty($job->salary_from) @else Rs. {{ $job->salary_from }}

@endempty
@empty($job->industry_id)
Industry: {{ getIndustryByIndustryId($job->industry_id) }}
@endempty
Designation: @empty($job->designation) @else {{ $job->designation }} @endempty
Experience: {{-- @empty ($job->experience_min) @else {{ $job->experience_min }} - {{ $job->experience_max }} Year @endempty --}} @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
@empty($job->gender) @else
Gender: {{ $job->gender }}
@endempty @if ($job->work_from_home)
Work From Home: {{ $job->work_from_home ? 'Allowed' : '' }}
@endif
Posted On: {{ Carbon::parse($job->created_at)->format('d-M-Y') }}
@if(isset($job->description))

Job Description


{!! $job->description !!}
@endif @else @include('errors.response') @endif