@php use function Modules\Core\Settings\Helpers\setting; use Illuminate\Support\Facades\Storage; use Modules\Shop\Categories\Models\Category; $currentFullUrl = request()->fullUrl(); $isHome = request()->routeIs('home'); /* |-------------------------------------------------------------------------- | Categorías principales |-------------------------------------------------------------------------- */ $mainCategories = Category::query() ->where('parent_id', -1) ->orderBy('order') ->with([ 'children' => fn ($query) => $query->orderBy('order') ]) ->get(); /* |-------------------------------------------------------------------------- | Data para Alpine |-------------------------------------------------------------------------- */ $megaMenuData = $mainCategories->map(function ($cat) { $children = $cat->children->map(function ($child) { $childImage = $child->image_mobile ?: $child->image; return [ 'id' => $child->id, 'name' => $child->name, 'slug' => $child->slug, 'url' => route('productos', ['category' => $child->slug]), 'image' => $childImage ? Storage::url($childImage) : null, ]; })->values(); $categoryImage = $cat->image_mobile ?: $cat->image; return [ 'id' => $cat->id, 'name' => $cat->name, 'slug' => $cat->slug, 'url' => route('productos', ['category' => $cat->slug]), /* |-------------------------------------------------------------------------- | Imagen normal cuando NO hay subcategorías |-------------------------------------------------------------------------- */ 'image_mobile' => $categoryImage ? Storage::url($categoryImage) : null, /* |-------------------------------------------------------------------------- | Promo cuando NO hay subcategorías |-------------------------------------------------------------------------- */ 'imagen_promo' => !empty($cat->imagen_promo) ? Storage::url($cat->imagen_promo) : null, 'titulo_promo' => !empty($cat->titulo_promo) ? $cat->titulo_promo : $cat->name, 'link_promo' => !empty($cat->link_promo) ? $cat->link_promo : route('productos', ['category' => $cat->slug]), 'children' => $children, ]; })->values(); @endphp
{{-- GLOW EFFECT --}} {{-- ===================================================================================== --}} {{-- NAVBAR --}} {{-- ===================================================================================== --}}
{{-- ====================================================== --}} {{-- MOBILE --}} {{-- ====================================================== --}}
{{-- Navegacion Izquierda --}}
@include('layout.drawers.menu')
{{-- Logo --}} @if (setting('site.logo')) {{ setting('site.title') }} @else @endif {{-- Navegacion Derecha --}}
{{-- ====================================================== --}} {{-- DESKTOP --}} {{-- ====================================================== --}}
{{-- ===================================================================================== --}} {{-- MEGA MENU --}} {{-- ===================================================================================== --}}