@extends('layouts.app') @section('seoheader') {!! $seo ?? '' !!} @endsection @section('plusblade') @include('utils.modals') @endsection @section('content') @include('utils.preloader') @include('layouts.header')
    @forelse ($product->images as $g)
  • {{ $product->prod_description }}
  • @empty
  • {{ $product->prod_description }}
  • @endforelse
@forelse ($product->images as $g)
{{ $product->prod_description }}
@empty
{{ $product->prod_description }}
@endforelse
Imagen Referencial *
@if ($product->descuent && !Request::query('rmt')) @if ($product->descuent->show_view == 1) ¡Ahorra!
@if ($product->descuent->affect_price == 0) ${{ number_format(($product->descuent->amount - $product->price), 2) }} @else ${{ number_format(($product->price - $product->descuent->amount), 2) }} @endif
@elseif ($product->descuent->show_view == 2) -{{ ($product->descuent->porcent) }}% @endif @endif

{{ $product->prod_description }}

{{ $product->brand->b_description }}
MINICÓDIGO: {{ $product->prod_min_cod }}
PN: {{ $product->prod_code ?? '' }}
STOCK: {{ ($product->stock > 9) ? '+10' : $product->stock }}
VER MÁS DE ESTA MARCA
@foreach ($similars as $s)
{{ $s->feature->name. ':' ?? '' }}
@foreach ($s->relations as $p) {{ $p->product->prod_description }} {{ $p->content }} ${{ number_format($p->product->price, 2) }} @endforeach
@endforeach
{!! $product->detail->description !!}
@if (Request::query('rmt') && !is_null($product->liquidation))
Nota:
{!! $product->liquidation->description !!}
@endif
{{-- --}}
@if ($product->stock > 0) @if ($product->descuent && !Request::query('rmt'))
La oferta termina en
@endif
Pagando con Efectivo
@php $price = $product->price; $price2 = 0; $price3 = $product->price_increment; if ($product->descuent) { $price = ($product->descuent->affect_price == 0) ? $product->price : $product->descuent->amount; $price2 = ($product->descuent->affect_price == 0) ? $product->descuent->amount : $product->price; $price3 = ($product->descuent->affect_price == 0) ? $price3 : ($product->descuent->amount + (($product->descuent->amount * $configGeneral->targetprice))) ; } if (request('rmt') && !is_null($product->liquidation)) { $price = $product->liquidation->price; $price2 = $product->price; $price3 = $product->liquidation->price + ($product->liquidation->price * $configGeneral->targetprice); } @endphp ${{ number_format($price, 2, '.', ' ') }} - S/{{ number_format(($price * $configGeneral->cambio), 2, '.', ' ') }} @if ($price2 > 0) antes ${{ number_format(($price2), 2) }} @endif
Pagando con Tarjeta (+{{ $configGeneral->targetprice * 100 }}%)
${{ number_format($price3, 2, '.', ' ') }} - S/{{ number_format(($price3 * $configGeneral->cambio), 2, '.', ' ') }}
El precio incluye IGV.
@if (!Request::query('rmt') || is_null($product->liquidation))
@endif @else

No hay Stock disponible u.u

@endif
@if (count($products_relations) > 5 ) @include('layouts.line_products', [ 'title' =>'Productos que te pueden interesar', 'title_url' => '', 'products' => $products_relations ]) @endif @if (count($products_brands) > 5 ) @include('layouts.line_products', [ 'title' =>'Productos relacionados con la marca', 'title_url' => '', 'products' => $products_brands ]) @endif @if (count($products_comparisons) >= 1 && !is_null($product->detail->details)) @include('layouts.products_comparation') @endif @if (count($product->reviews)) @include('layouts.product_reviews_line', ['reviews' => $product->reviews]) @endif @if ($product->detail->html != null && $product->detail->html != '')

Descripción del Producto

{!! $product->detail->html ?? 'Cargando...' !!}
@endif @if ($product->detail->specifications != null && $product->detail->specifications != '')

Descripción del Producto

{!! $product->detail->specifications ?? 'Cargando...' !!}
@endif

Especificaciones técnicas:

@php $detail = explode('', $product->detail->details) @endphp @for ($i = 0; $i < count($detail); $i++) @php $dd = $detail[$i] ?? ''; if (!strpos($dd, '')) { $dd .= ''. $dd; } $parts = explode('', $detail[$i]); @endphp @endfor
{{ $standard_subcategory[$i]->content ?? 'N/D' }}: {{ $parts[1] ?? $parts[0] }}
{{--
--}}
@include('layouts.newsletter') @include('layouts.footer') @include('utils.backtop') @endsection @section('link_scripts_custom') @endsection @section('scripts_custom') @endsection