{{-- * LaraClassified - Geo Classified Ads CMS * Copyright (c) Mayeul Akpovi. All Rights Reserved * * Email: mayeul.a@larapen.com * Website: http://larapen.com * * LICENSE * ------- * This software is furnished under a license and may be used and copied * only in accordance with the terms of such license and with the inclusion * of the above copyright notice. If you Purchased from Codecanyon, * Please read the full License from here - http://codecanyon.net/licenses/standard --}} @extends('classified.layouts.master') @section('search') @parent @endsection @section('content')
@if (session('message'))
{{ session('message') }}
@endif @if (Session::has('flash_notification.message'))
@include('flash::message')
@endif

{{ trans('page.Sitemap') }}


{{ t('List of Categories and Sub-categories') }}

@foreach ($cats as $key => $col)
@foreach ($col as $categorie)

{{ $categorie->name }}

    @if ($sub_cats->get($categorie->tid)) @foreach ($sub_cats->get($categorie->tid) as $sub_cat)
  • {{ $sub_cat->name }}
  • @endforeach @endif
@endforeach
@endforeach
@if(isset($cities))

{{ t('List of Cities in') }} {{ $country->get('name') }}

    @foreach ($cities as $key => $cols) @endforeach
@endif
@include('classified/layouts/inc/social/horizontal')
@endsection @section('javascript') @parent @endsection