@php $columns = explode(',', Cache::Get('product_columns_count','2,3,3')); @endphp
@foreach ($products as $product)
@if($product->discount_rate) %{{ $product->discount_rate }} @endif @if($product->img) @else @endif @if($product->isPopular()) {{__('Popular')}} @endif @if($product->isBestSeller()) {{ __('Best Seller') }} @endif @if($product->isNew()) {{ __('Newest') }} @endif

{{ $product->name }}

@if($product->old_price) {{config('app.currency_symbol')}}{{ money($product->old_price) }} @endif {{config('app.currency_symbol')}}{{ money($product->price) }}
@if($product->get_properties($product->properties)->count() > 0) @foreach($product->get_properties($product->properties) as $property)
description) data-bs-toggle="tooltip" data-bs-placement="top" title="{{ $property->description }}" @endif> {{ $property->name }} {{ $property->name }}
@endforeach @endif
@endforeach