@extends('front.front-app') @include('front.header') @include('front.header-bottom-goods') @section('container')
@include('front.templates.breadcrumbs')
@if(!empty($shops_type) && count($shops_type)) @foreach($shops_type as $one_type)
@endforeach @endif
@if(!empty($cities) && count($cities))
@foreach($cities as $one_city)
@if(!empty($shops[$one_city->id]) && count($shops[$one_city->id]))

{{ $one_city->name or '' }}:

@foreach($shops[$one_city->id] as $one_shop)

{{ $one_shop->address or '' }}

{{ $one_shop->phone or '' }}

{{ $one_shop->schedule or '' }}

@if($one_shop->shops_type) @php $shop_types = explode(',', $one_shop->shops_type); @endphp
    @foreach($shop_types as $one_shop_type)
  • {{ $one_shop_type ? ucfirst($one_shop_type) : '' }}

  • @endforeach
@endif {{--{{ url($lang, ['shop', $one_shop->alias]) }}--}}
@endforeach @endif
@endforeach
@endif
{!! ShowLabelById(10, $lang_id) !!}
@include('front.pages.google-scrip')
@stop @include('front.footer')