@extends('front.app') @section('meta') @stop @section('container')
@switch(request()->input('product')) @case('description') @include('front.pages.catalog.detail-tem-templates.description') @break @case('parameters') @include('front.pages.catalog.detail-tem-templates.parameters') @break {{-- @case('states')--}} {{-- @include('front.pages.catalog.detail-tem-templates.states')--}} {{-- @break--}} @default @include('front.pages.catalog.detail-tem-templates.main') @break @endswitch
@if(!empty($similar_goods) && count($similar_goods))

{{ ShowLabelById(113) }}

@foreach($similar_goods as $one_goods)
@include('front.templates.goods-template')
@endforeach
@endif @if(!empty($recently_viewed_goods) && count($recently_viewed_goods))

{{ ShowLabelById(114) }}

@foreach($recently_viewed_goods as $one_goods)
@include('front.templates.goods-template')
@endforeach
@endif
@stop