@php $setting = new App\Setting(); @endphp
{{ $setting->meta_title }}
{{ $setting->company_tel }}
@if(!Auth::check())
{{ __('Sign in') }}
@else
{{ Auth::user()->name }}
{{ __('Wishlist') }}
@endif @foreach(App\Translation::get_lang_array() as $translation)
{{$translation->lang}}
@endforeach
{{ __('Menu mobile') }}
{{ __('Home') }}
{{ __('Tour') }} @php $tour_categries = App\TourCategory::get_listing(); @endphp @if(count($tour_categries))
@endif
@if(count($tour_categries))
@foreach($tour_categries as $row) @if($row->status)
{{ $row->name }}
@endif @endforeach
@endif
{{ __('Blog') }} @php $blog_categories = App\BlogCategory::get_listing(); @endphp @if(count($blog_categories))
@endif
@if(count($blog_categories))
@foreach($blog_categories as $row) @if($row->status)
{{ $row->name }}
@endif @endforeach
@endif
@php $top_pages = App\Page::where('status','=',true) ->where('display_in_top_menu','=',true) ->orderBy('prefix', 'asc') ->get(); @endphp @foreach($top_pages as $row)
{{ $row->title }}
@endforeach
{{ __('Contact us') }}