@extends('layouts.appInnerWithLeftSideBar') @section('seoTitle') {{ $title }} @ {{ env('SEO_NAME') }} @endsection @section('leftTitle') Browse Category @endsection @section('title') {{ $title }} @endsection @section('leftSideBar')
@endsection @section('rightContent') @if ($jobs->isEmpty()) {!! showMessage('No jobs under this category') !!} @else @foreach ($jobs as $job)
@if($job->is_posted_by_admin == 1)
Hot Job
@endif {{--

{{ $job->title }}

--}}

{{ $job->title }}

{{--
{{ $job->description }}
--}}

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

{{--

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
--}}
@endforeach
{{ $jobs->links() }}
@endif @endsection {{-- @push('custom-scripts') @endpush --}}