@extends('layouts.app') @section('title', 'Products') @section('content')

All Products

@foreach ($ads as $ad)
{{ $ad->title }}

{{ $ad->worn_days ? 'Duration: ' . $ad->worn_days . ' days' : 'No duration available' }}

price ${{ $ad->price }}

{{--
--}}
@endforeach

Category

Days Worn

Gender

Size

Price Range €

{{ request('minPrice') ?? '0' }} - {{ request('maxPrice') ?? $max }}

Additional Refinements

@php $options = [ 'Wearing pictures', 'Waring videos', 'Worn during sport', 'Golden shower', 'Worn during sex', 'Worn inside', 'Lisptick', 'Parfume', // 'Worn during masturbation', 'Kaviar', ]; @endphp
@foreach ($options as $key => $option)
@endforeach
Reset Filter
@if ($ads->isEmpty())

No products found

@endif
@endsection