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