@extends('layouts.front-end.app') @section('title', 'Shop products') @push('css_or_js') @endpush @section('content')

Discover Our Beauty Collection

Categories

    @foreach (\App\CPU\CategoryManager::parents() as $category)
  • {{ $category['name'] }}
  • @endforeach

Brands

    @foreach (\App\CPU\BrandManager::get_brands() as $brand)
  • {{ $brand['name'] }}
  • @endforeach

Price Range

  • < $50
  • $51 - $100
  • $101 - $250
  • $251 - $500
  • $501 - $1,000

Rating

Sort by

Showing {{ $shop_products->count() }} results
@if ($shop_products->count() > 0)
@include('web-views.products.filtering_products', ['products' => $shop_products])
@else

Product not found

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