@extends('layouts.app') @section('seoheader') {!! $seo ?? '' !!} @endsection @section('content') @include('utils.preloader') @include('layouts.header')
@forelse ($products as $ofert) @php $product = $ofert->product; @endphp
{{ $product->prod_description }} @if ($ofert->description != null || $ofert->description != '')
Nota:
{!! $ofert->description !!}
@endif

{{ (strlen($product->prod_description) > 90) ? substr($product->prod_description, 0, 95) . '...': $product->prod_description }}

MINICÓDIGO: {{ $product->prod_min_cod }}
STOCK: {{ ($ofert->stock > 10) ? '+10' : $ofert->stock }}

${{ number_format($ofert->price, 2, '.', ' ') }} - S/{{ number_format(($ofert->price * $configGeneral->cambio), 2, '.', ' ') }} antes ${{ number_format(($product->price), 2, '.', ' ') }}
@empty

No se ha encontrado productos.

@endforelse
{{ $products->withQueryString('pagination::custom') }}
@include('layouts.brand') @include('layouts.newsletter') @include('layouts.footer') @include('utils.backtop') @endsection