@extends('frontend.layout.app') @section('seo_title') {{ $other_page_item->job_listing_page_title }} @endsection @section('seo_meta_description') {{ $other_page_item->job_listing_page_meta_description }} @endsection @section('main_content')

{{ $other_page_item->job_listing_page_heading }}

Job Title

Job Category

Job Location

Job Type

Job Experience

Job Gender

Job Salary Range

@if ($advertisement_data->job_listing_ad_status == 'Show') @endif
Search Result for Job Listings
@if (!$jobs->count())
No Result Found
@else @foreach ($jobs as $item) @php $this_company_id = $item->rCompany->id; $order_data = \App\Models\Order::where('company_id', $this_company_id) ->where('currently_active', 1) ->first(); if (date('Y-m-d') > $order_data->expire_date) { continue; } @endphp

{{ $item->title }}, {{ $item->rCompany->company_name }}

{{ $item->rJobCategory->name }}
{{ $item->rJobLocation->name }}
{{ $item->created_at->diffForHumans() }}
{{ $item->rJobSalaryRange->name }}
@if (date('Y-m-d') > $item->deadline)
Expired
@endif
@if ($item->is_featured == 1) @endif
{{ $item->rJobType->name }}
@if ($item->is_urgent == 1)
Urgent
@endif
@if (!Auth::guard('company')->check())
@if (Auth::guard('candidate')->check()) @php $count = \App\Models\CandidateBookmark::where(['candidate_id' => Auth::guard('candidate')->user()->id, 'job_id' => $item->id])->count(); if ($count > 0) { $bookmark_status = 'active'; } else { $bookmark_status = ''; } @endphp @else @php $bookmark_status = ''; @endphp @endif @if (date('Y-m-d') <= $item->deadline) @endif
@endif
@endforeach
{{ $jobs->appends($_GET)->links() }}
@endif
@endsection