@php
$isConfigurable = $product->variations()->count() > 0 ? true : false;
@endphp
@if (!$isConfigurable)
@else
@endif
{{ $product->name }}
@if ($product->front_sale_price !== $product->price)
{{ format_price($product->price) }}
{{ format_price($product->front_sale_price) }}
@else
{{ format_price($product->price) }}
@endif