@extends('layouts.app') @section('seoheader') {{ $event->name }} @endsection @section('content') @include('utils.preloader') @include('layouts.header')
@forelse ($list as $product)
{{ $product->prod_description }} @if (Auth::check()) @else
@endif

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

MINICÓDIGO: {{ $product->prod_min_cod }}

STOCK: {{ ($product->stock > 10) ? '+10' : $product->stock }}

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

NO SE HAY PRODUCTOS REGISTROS.

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