@include('jobs.partials.header-styles') @include('jobs.partials.header', ['activeLink' => 'search'])
{{ __('jobs.jobs_applied_for') }}
@if($appliedJobs->isEmpty())
You haven't applied for any jobs yet.
Browse available jobs →
@else @foreach($appliedJobs as $application) @php $job = $application->careerJob; @endphp @if($job)
{{ $job->title }}
{{ $job->location }}
{{ __('jobs.posted') }} {{ $job->posted_date->format('F d, Y') }} | {{ __('jobs.expires') }} {{ $job->expires_date->format('F d, Y') }}
{{ Str::limit(strip_tags($job->description), 200) }}
{{ __('jobs.read_more') }}
@endif @endforeach @if($appliedJobs->hasPages())
{{ $appliedJobs->links() }}
@endif @endif
@include('jobs.partials.header-script') @include('jobs.partials.cookie-consent')