@include('jobs.partials.header-styles') @include('jobs.partials.header', ['activeLink' => 'search'])
{{ __('jobs.search_jobs') }}
🔍
📍
{{ __('jobs.distance') }}
5 miles
10 miles
25 miles
50 miles
▼
{{ __('jobs.advanced_search') }}
{{ __('jobs.pay_type') }}
{{ __('jobs.all_pay_types') }}
Hourly
Salary
Commission
Contract
{{ __('jobs.department') }}
{{ __('jobs.all_departments') }}
@php $departments = \App\Models\CareerJob::whereNotNull('department') ->distinct() ->pluck('department') ->filter() ->sort() ->values(); @endphp @foreach($departments as $dept)
{{ $dept }}
@endforeach
{{ __('jobs.posted_within') }}
{{ __('jobs.any_time_frame') }}
Last 24 hours
Last 3 days
Last week
Last 2 weeks
Last month
Last 2 months
{{ __('jobs.save_search') }}
{{ __('jobs.clear_all') }}
{{ __('jobs.search_jobs') }}
@forelse($jobs as $job)
{{ $job->title }}
{{ $job->location }}
{{ __('jobs.posted') }} {{ $job->posted_date->format('l, F d, Y') }} | {{ __('jobs.expires') }} {{ $job->expires_date->format('l, F d, Y') }}
{{ Str::limit(strip_tags($job->description), 200) }}
{{ __('jobs.read_more') }}
@empty
{{ __('jobs.no_jobs_found') }}
@endforelse
@if($jobs->hasPages())
{{ $jobs->links() }}
@endif
@include('jobs.partials.header-script') @include('jobs.partials.cookie-consent')