@extends('frontend.layouts.master') @section('style') @endsection @section('content') @include('frontend.partials.mobile-filter')
{!! $category->description !!}
@if (count($category->getMedia(Helper::CATEGORY_SLIDER_COLLECTION)) > 0)
    @foreach ($category->getMedia(Helper::CATEGORY_SLIDER_COLLECTION) as $media)
  • @endforeach
@endif @if (count($popularCategories) > 0)
@endif
@if (!auth('web')->check() || auth('web')->user()->hasRole('user')) @foreach ($products as $key => $product)
@livewire('frontend.product-card', ['product' => $product])
@endforeach @endif
{{ $products->links() }}
@endsection @section('script') @endsection