@extends('layouts.user-no-nav') @section('page_title', __('Saved jobs')) @section('styles') {!! Minify::stylesheet([ '/css/pages/home.css', ])->withFullUrl() !!} @stop @section('content')
@include('elements.page-navigation-header',[ 'title' => __('Saved jobs'), 'points' => [ ['title' => __('Home'), 'route' => route('home')], ['title' => __('Candidate dashboard'), 'route' => route('my.candidate.dashboard')], ['title' => __('Saved jobs')], ], ]) @include('elements.message-alert',['classes'=>'alert-box pt-0 pb-4'])
@if($savedJobs->count()) @foreach($savedJobs as $savedJob) @if($savedJob->job) @include('elements.listings.job-listing-box', ['job' => $savedJob->job]) @endif @endforeach
{{ $savedJobs->links() }}
@else

{{__('No saved jobs yet.')}}

{{__('Save jobs while browsing and they will show up here.')}}

{{__('Browse jobs')}}
@endif
@endsection