@extends('frontend.layouts.app', ['title' => 'Shop Page']) @section('content')

Categories

@foreach ($categories as $category)

@foreach ($category->sub_categories as $sub_category)
cat_id ? 'checked' : '' }}>
@endforeach
@endforeach

Attributes

@foreach ($attributes as $attribute)

@if ($attribute->name == 'Color')
@foreach ($attribute->values as $option)
id, request()->input("attributes.{$attribute->id}", [])) ? 'checked' : '' }}>
@endforeach
@else @foreach ($attribute->values as $option)
id, request()->input("attributes.{$attribute->id}", [])) ? 'checked' : '' }}>
@endforeach @endif
@endforeach
@if ($products->isNotEmpty())
@foreach ($products as $product) @php $isInWishlist = $wishlist->contains('product_id', $product->product_id); @endphp @endforeach
@else

No Products Found

@endif
@push('scripts') @endpush @endsection