@extends('layouts.user-no-nav') {{-- SEO, Schema & Share --}} @section('page_title', __('My jobs')) @section('styles') {!! Minify::stylesheet([ '/css/pages/home.css', ])->withFullUrl() !!} @stop @section('scripts') {!! Minify::javascript([ '/js/Job.js', '/js/pages/settings/subscriptions.js', ])->withFullUrl() !!} @stop @section('content') @include('elements.standard-dialog',[ 'dialogName' => 'job-delete-dialog', 'title' => __('Delete job listing'), 'content' => __('Are you sure you want to delete this job listing?'), 'actionLabel' => __('Delete'), 'actionFunction' => 'Job.delete();', ])
@include('elements.page-navigation-header',[ 'title' => __('Jobs'), 'points' => [ ['title' => __('Home'), 'route' => route('home')], ['title' => __('My jobs')], ], 'button' => [ 'title' => __('New'), 'route' => route('jobs.create') ] ]) @include('elements.message-alert',['classes'=>'alert-box pt-0 pb-4'])
@if(count($jobs))
@foreach($jobs as $job) @include('elements.listings.job-listing-box',['job' => $job, 'isOwner' => true]) @endforeach
@else

{{__('You currently have no jobs.')}}

{{__('You can always create a job in just a few seconds, by clicking the button on the top right side of this page.')}}

@endif
{{ $jobs->links() }}
@endsection