@extends('layouts.master') @section('title', $data['pageTitle']) @push('custom-css') @endpush @section('content')
{!! $page->title !!}
{!! $page->body !!}
@if(request()->hasAny(['keyword', 'job_type', 'city', 'state', 'country'])) Reset @endif
@forelse($jobs as $job)
{{ $job->job_type }}

{{ $job->title }}

    @if($job->location)
  • {{ $job->location }}
  • @endif @if($job->salary_range)
  • {{ $job->salary_range }}
  • @endif @if($job->date_posted)
  • Posted {{ $job->date_posted->format('d M Y') }}
  • @endif
@if($job->description)

{{ \Illuminate\Support\Str::limit(strip_tags($job->description), 120) }}

@endif
@empty

No current openings

There are no positions matching your search right now. Please check back soon.

@endforelse @if($jobs->hasPages())
{{ $jobs->links('vendor.pagination.default') }}
@endif
@endsection