File: D:/HostingSpaces/SBogers10/topswtwmobile.komma.pro/app/views/partials/languageSwitch.blade.php
<div class="language_switch">
<div class="switch-box">
<div class="logo-bar">
<img class="logo" alt="Logo Tops WTW-Filters" src="/images/structure/tops_logo_header.svg">
</div>
<p class="text">
@if(Lang::has('partials/languageSwitch.other_shop_de', $popupLang) && \Shop::getShop()->id == 1)
@lang('partials/languageSwitch.other_shop_de',['linkText'=> \Shop::getOtherShopRedirect('text'),'linkLocation'=> \Shop::getOtherShopRedirect('location') ],$popupLang)
@else
@lang('partials/languageSwitch.other_shop',['linkText'=> \Shop::getOtherShopRedirect('text'),'linkLocation'=> \Shop::getOtherShopRedirect('location') ],$popupLang)
@endif
</p>
<div class="btn-holder">
@if(Lang::has('partials/languageSwitch.other_shop_de',$popupLang) && \Shop::getShop()->id == 1)
@include('partials.buttons.default',[
'route' => \Shop::getOtherShopRedirect('location'),
'text' => Lang::get('partials/languageSwitch.button_de',[],$popupLang)
])
@else
@include('partials.buttons.default',[
'route' => \Shop::getOtherShopRedirect('location'),
'text' => Lang::get('partials/languageSwitch.button',[],$popupLang)
])
@endif
</div>
<p class="link">
@if(Lang::has('partials/languageSwitch.other_shop_de',$popupLang) && \Shop::getShop()->id == 1)
{{ HTML::link('', Lang::get('partials/languageSwitch.stay_here_de',[],$popupLang))}}
@else
{{ HTML::link('', Lang::get('partials/languageSwitch.stay_here',[],$popupLang))}}
@endif
</p>
</div>
</div>