@extends('layout.master') @section('meta') @include('layout.partials.seo', [ 'title' => nova_get_setting_translate('home_site_title'), 'description' => nova_get_setting_translate('home_site_description'), 'keywords' => nova_get_setting_translate('home_site_keywords'), 'image' => Storage::url(nova_get_setting('logo')), 'schema' => nova_get_setting('home_schema') ]) @endsection @section('content') {{nova_get_setting_translate('page_search_title')}} {{__('general.home')}} {{__('general.page_search')}} {{nova_get_setting_translate('page_search_heading')}} @if(count($tours) > 0 ) @foreach($tours as $tour) @include('layout.partials.tour-box',['tour' => $tour,'style'=>'Tours']) @endforeach {{ $tours->appends(request()->query())->links() }} @else {{__('general.not_found_tour')}} @endif @endsection