@extends('frontend.main_master') @section('body-class', 'store-page-shell') @section('title', ($activeCategory ? $activeCategory->name . ' | ' : '') . 'Shop | ' . t('site-title')) @section('meta_description', $activeCategory ? ($activeCategory->description ?: 'Descubre los productos de ' . $activeCategory->name . ' en la shop de Astro Wise.') : 'Discover astrological reports, personalized charts, and readings in the Astro Wise store. de Astro Wise.') @push('schema') @endpush @push('styles') @endpush @section('content')

{{ $activeCategory ? $activeCategory->name : 'Astrology Store' }}

{{ $activeCategory ? ($activeCategory->description ?: 'Explora los productos de esta categoría.') : 'Descubre productos, reportes y herramientas astrológicas en la shop de Astro Wise.' }}

Categorías
@include('frontend.store.partials.category-tree', ['nodes' => $categoryTree, 'activeCategory' => $activeCategory, 'depth' => 0])
Search y Ordenar
@if ($products->count() > 0)
@foreach ($products as $product)
@include('frontend.store.partials.product-card', ['product' => $product])
@endforeach
{{ $products->links() }}
@else

No se encontraron productos con los filtros seleccionados.

@endif
@endsection