{{ $settings->fantasy_name ?? 'Bienvenido a nuestra tienda' }}
{{ $settings->meta_description ?? 'Explorá todas las secciones de nuestro sitio.' }}
Páginas Principales
- Inicio
- Tienda @foreach($pages as $page)
- {{ $page->name }} @endforeach
- Contacto @if(showBlogInFooter())
- Blog @endif @if(showFaqsInFooter())
- Preguntas Frecuentes @endif
Mi Cuenta
-
@guest
- Iniciar Sesión
- Registrarse @else
- Mi Perfil
- Mis Pedidos @endguest
- Lista de Favoritos @if(showCompareFeature())
- Comparar Productos @endif
- Carrito de Compras
Información
-
@if(showFaqsInFooter())
@php
$faqCategories = \App\Models\FaqCategory::where('status', 1)
->whereHas('faqs', function($q) {
$q->where('status', 1);
})
->orderBy('order')
->get();
@endphp
@foreach($faqCategories as $faqCat)
- {{ $faqCat->name }} @endforeach @endif
- Contacto
- Mapa del Sitio
Marcas
-
@foreach($brands as $brand)
- {{ $brand->DE_MARCA }} @endforeach
Categorías de Productos
{{ $category->DE_CATEGOR }}
@php $subcategories = \App\Models\Subcaweb::where('CO_CATEGOR', $category->CO_CATEGOR) ->where('activo', 1) ->orderBy('DE_SUBCATE') ->get(); @endphp @if($subcategories->count() > 0)-
@foreach($subcategories as $subcategory)
- {{ $subcategory->DE_SUBCATE }} @endforeach