@extends('layouts.frontLayout.front_design') @section('content') @php use App\Models\Product; @endphp
@if(Session::has('flash_message_error'))
{!! session('flash_message_error') !!}
@endif @if(Session::has('flash_message_success'))
{!! session('flash_message_success') !!}
@endif
@include('layouts.frontLayout.front_sidebar')
{{--

ZOOM

--}}
@csrf
{!! $breadcrumb !!}
 

{{ $productDetails->product_name }}

Código: {{ $productDetails->product_code }}

Color: {{ $productDetails->product_color }}

@if (!empty($productDetails->sleeve))

Manga: {{ $productDetails->sleeve }}

@endif @if (!empty($productDetails->pattern))

Patrón: {{ $productDetails->pattern }}

@endif {{-- --}} @if (count($productDetails->attributes) > 0)

@php $getCurrencyRates = Product::getCurrencyRates($productDetails->price); @endphp $ {{ $productDetails->price }}

USD {{ $getCurrencyRates['USD_Rate'] }}

@if ($totalStock > 0)

@endif

Disponibilidad: @if ($totalStock > 0) Disponible @else No disponible @endif

Condición: Nuevo

Envío: 

@endif

@php echo nl2br($productDetails->description); @endphp

@php echo nl2br($productDetails->care); @endphp

{{ "Pago contra Entrega"}}

@if (!empty($productDetails->video))
@else No hay video disponible @endif
@endsection