@extends('front.app') @section('meta') @stop @section('container')
@if($goods_item->oImages->isNotEmpty())
@foreach($goods_item->oImages as $one_image)
{{ $goods_item->name ?? '' }} - thumbs image {{ $loop->iteration }}
@endforeach
@endif

{{ $goods_item->name ?? '' }}

@if($goods_item->getBrand && $goods_item->getBrand->img) @endif

{{ ShowLabelById(112) }}: {{ $goods_item->one_c_code ?? '' }}

@if($goods_item->in_stoc == 1) Available

{{ ShowLabelById(113) }}

@else Not available

{{ ShowLabelById(114) }}

@endif
@if($goods_item->in_stoc == 1)
{{--{{ getDefaultPriceFormat($one_goods->price_old) }}--}} {{ getDefaultPriceFormat($goods_item->price) }} {{ ShowLabelById(26) }} @if($goods_item->price_old > 0) {{ getDefaultPriceFormat($goods_item->price_old) }} {{ ShowLabelById(26) }} -{{ $goods_item->discountPercent() }} % @endif
Delivery

{{ ShowLabelById(116) }}

@endif @if(!empty($social_media_call) && count($social_media_call))
    @foreach($social_media_call as $one_item)
  • {{ $one_item->name ?? '' }}
  • @endforeach
@endif
@if($goods_item->body) @endif @if($goods_item->model || $goods_item->getBrand) @endif
@if($goods_item->body)
{!! nl2br($goods_item->body) !!}
@endif @if($goods_item->getBrand || $goods_item->model)
    @if($goods_item->getBrand)
  • {{ ShowLabelById(119) }}

    {{ $goods_item->getBrand->name }}

  • @endif @if($goods_item->model)
  • {{ ShowLabelById(122) }}

    {{ $goods_item->model }}

  • @endif
@endif
@if(!empty($similar_goods) && count($similar_goods))

{{ ShowLabelById(120) }}

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

{{ ShowLabelById(121) }}

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