@extends('website.layouts.master') @section('title') {{__('website.shops')}} @stop @section('css') @stop @section('script.title') @stop @section('content') {{__('theme.home')}} @if(\Request::route()->getName() == 'country.shops') @php $country_translation = $country->translations->where('language_id',getLocaleId())->first(); @endphp {{$country_translation->name ?? $country->name}} @endif {{__('website.shops')}} {{__('theme.latest_shops')}} @foreach ($latest_shops as $latest_shop) {!! $latest_shop->getQualifiedName() !!} @endforeach @foreach ($shops as $shop) @if (config('system_settings.show_merchant_info_as_vendor')) {!! $shop->owner->getName() !!} {!! $shop->address->toShortString() !!} @else {!! $shop->getQualifiedName() !!} {!! $shop->address->toShortString() !!} {!! $shop->address->toShortString() !!} @endif @endforeach {!! $shops->links() !!} @stop @section('script') @stop
{!! $shop->address->toShortString() !!}