@extends('frontend.main_master') @section('body-class', 'store-page-shell') @section('title', ($activeCategory ? $activeCategory->name . ' | ' : '') . 'Mağaza | ' . t('site-title')) @section('meta_description', $activeCategory ? ($activeCategory->description ?: 'Astro Bilge mağazasında ' . $activeCategory->name . ' ürünlerini keşfedin.') : 'Astro Bilge mağazasında astroloji temalı ürünleri keşfedin.') @push('schema') @endpush @push('styles') @endpush @section('content')

{{ $activeCategory ? $activeCategory->name : 'Mağaza' }}

{{ $activeCategory ? ($activeCategory->description ?: 'Bu kategorideki ürünleri keşfedin.') : 'Astro Bilge mağazasında astroloji temalı ürünleri keşfedin.' }}

Kategoriler
@include('frontend.store.partials.category-tree', ['nodes' => $categoryTree, 'activeCategory' => $activeCategory, 'depth' => 0])
Ara & Sırala
@if ($products->count() > 0)
@foreach ($products as $product)
@include('frontend.store.partials.product-card', ['product' => $product])
@endforeach
{{ $products->links('pagination::bootstrap-5') }}
@else

Ürün bulunamadı

Aramanıza uygun ürün bulunamadı, filtreleri temizleyip tekrar deneyin.

@endif
@endsection