@extends('../../master_layout/website_master') @section('heading')
Back

{{$majorroad->title}}

@php $breadcrumb = array( array('title'=>'Major Road', 'url'=>'', 'active'=>'1') ); @endphp @include('website_view.component.breadcrumb', compact("breadcrumb"))
@endsection @section('content')
Major Roads
@if(isset($countries) && !$countries->isEmpty()) @foreach($countries as $m_country) @php $location_param_link = array(); $location_param_link['location'] = Str::slug($m_country->country_name); @endphp {{ $m_country->country_name }}  @endforeach @endif @if(isset($cities) && !$cities->isEmpty()) @foreach($cities as $m_city) @php $location_param_link = array(); $location_param_link['location'] = Str::slug($m_city->country_name); $location_param_link['city'] = Str::slug($m_city->city_name); @endphp {{ $m_city->city_name }}  @endforeach @endif @if(isset($locations) && !$locations->isEmpty()) @foreach($locations as $m_location) @php $location_param_link = array(); $location_param_link['location'] = Str::slug($m_location->country_name); $location_param_link['city'] = Str::slug($m_location->city_name); $location_param_link['citylocation'] = Str::slug($m_location->location_name); @endphp {{ $m_location->location_name }}  @endforeach @endif @if(isset($areas) && !$areas->isEmpty()) @foreach($areas as $m_area) @php $location_param_link = array(); $location_param_link['location'] = Str::slug($m_area->country_name); $location_param_link['city'] = Str::slug($m_area->city_name); $location_param_link['citylocation'] = Str::slug($m_area->location_name); $location_param_link['area'] = Str::slug($m_area->area_name); @endphp {{ $m_area->area_name }}  @endforeach @endif
@php if(Config::get('customtitles.title_callgirls_common') != ''){ $title_callgirls = Config::get('customtitles.title_callgirls_common'); } else { $title_callgirls = "Call Girls"; } @endphp
@if(isset($listprofiles) && $listprofiles['total_escorts'] > 0) @if(isset($plans) && !empty($plans)) @foreach($plans as $plan) @if(isset($listprofiles[$plan->plan_id]) && !empty($listprofiles[$plan->plan_id]))

{{ $plan->plan_name}} Escorts & {{$title_callgirls}}

    @foreach($listprofiles[$plan->plan_id] as $profile) @include('website_view.component.profile-card', $profile) @endforeach
@endif @endforeach @endif @endif
@if($majorroad->image !='')
{{ $majorroad->title }}
@endif
{!! $majorroad->content !!}
@endsection @section('custom_js') @endsection