@if(count($products) > 0 )
@foreach($products as $product)
{{ $product->name }}
{{ Helper::setPriceFormat($product->price) }} {{ Helper::setPriceFormat($product->old_price) }}

{!! Helper::html_cut($product->description, 100) !!}

@include('frontend.products._product_attributes')
{{--
@forelse($product->product_attributes as $key => $attributes) @forelse($attributes as $attribute) {{$attribute->size}} @empty @endforelse @empty @endforelse
--}}
@endforeach
@include('layouts.pagination.default', ['paginator' => $products])
@else

No Products Found

@endif