@extends('frontend.layouts.default') @php $page_title = $taxonomy->title ?? ($page->title ?? ($page->name ?? '')); $image_background = $taxonomy->json_params->image_background ?? ($web_information->image->background_breadcrumbs ?? ''); @endphp @push('style') @endpush @section('content') {{-- Print all content by [module - route - page] without blocks content at here --}}

{{ $page_title }}

@csrf
@php $city = $params['city'] ?? null; $districts = collect(App\Region::DATA); $district = $districts->first(function ($item, $key) use ($city) { return $item['id'] == $city; }); @endphp
@foreach ($rows as $item)

{!! $item->name !!}

{!! $item->address !!}

{!! $item->phone !!}

{!! $item->fax !!}

@endforeach
{!! $web_information->source_code->map ?? '' !!}
{{-- End content --}} @endsection @push('script') @endpush