@extends('layouts.generic') {{-- SEO, Schema & Share --}} @section('page_title', __('Discover :category jobs',['category' => $category->name])) @section('share_url', route('browse.get',['slug' => $slug])) @section('share_title', __('Discover :category jobs') . '-' .getSetting('site.name')) @section('share_description', getSetting('site.description')) @section('share_type', 'article') @section('share_img', GenericHelper::getOGMetaImage()) @section('meta') {!! SEOSchemaHelper::searchResultsPage((object)['title' => getSetting('site.name'), 'description' => getSetting('site.description')]) !!} @stop @section('styles') {!! Minify::stylesheet([ '/css/pages/home.css', '/libs/@selectize/selectize/dist/css/selectize.css', '/libs/@selectize/selectize/dist/css/selectize.bootstrap4.css', ])->withFullUrl() !!} @stop @section('scripts') {!! Minify::javascript([ '/js/pages/search.js', '/libs/@selectize/selectize/dist/js/selectize.min.js', ])->withFullUrl() !!} @stop @section('content') @if(getSetting('site.show_featured_clients_area') && count(GenericHelper::getAvailableFeaturedClients())) @include('elements.featured-customers',[ 'classes' => 'my-5' ]) @else
@endif
@if(!count($jobs))
@include('elements.listings.no-jobs-found')
@endif @include('elements.subscribe-box')
@if(count($jobs))
@foreach($jobs as $job) @include('elements.listings.job-listing-box',['job' => $job]) @endforeach
@else
@include('elements.tags-box', ['tags' => GenericHelper::getPopularTags(20)])
@endif
{{ $jobs->onEachSide(1)->withQueryString()->links() }}
@endsection