@include('website.layouts.head') @include('website.layouts.header')
@if (!empty($features))

Ordenar por existencia


@php usort($features, function ($a, $b) { return strcmp($a['nombre'], $b['nombre']); }); @endphp
@foreach ($features as $feature)

{{ $feature['nombre'] }}


@php usort($feature['options'], function ($a, $b) { return strcmp($a['nombre'], $b['nombre']); }); @endphp @foreach ($feature['options'] as $option)
@endforeach
@endforeach
@if (request()->has('fam')) @endif @if (request()->has('sub')) @endif @if (request()->has('bus')) @endif @if (request()->has('tip')) @endif @if (request()->has('fil')) @endif @if (request()->has('ban')) @endif @if (request()->has('mar')) @endif @if (request()->has('pag')) @endif
@else
Filtros no disponibles
@endif
@if (!empty($products))
@if (!empty($json['prd_x_pag']))

Mostrando {{ $json['prd_x_pag'] }} de {{ $json['paginas'] }} páginas

@endif
Último Popularidad Precio bajo Precio alto
@foreach ($products as $item)
product
@csrf

{{ $item['nombre'] }}

N° PARTE: {{ $item['part_number'] }}
CONDICIÓN: {{ $item['condicion'] }}
DISPONIBILIDAD: @if ($item['existencias'] == 0 && $item['en_transito'] == 0) FUERA DE STOCK @else @if ($item['en_transito'] != 0) En tránsito @else @if ($item['existencias'] >= 99) 99+ @else {{ $item['existencias'] }} @endif PZA @endif @endif
DESCRIPCIÓN: {{ substr($item['desc'], 0, 40) . '...' }}
ETA: {{ $item['ETA'] }} DÍAS
MOQ: {{ $item['MOQ'] }} UNIDADES
@if ($item['en_transito'] > 0) EN TRANSITO: {{ $item['en_transito'] }}
@endif @if (session('usuario_autenticado')) PRECIO: ${{ $item['precio'] }} +IGV @endif

@endforeach @else {{ $mensaje }} @endif
@include('website.layouts.button-back-to-top') @include('website.layouts.footer') @include('website.layouts.scripts')