@if ($product->is_free)
@lang('Free')
@else
@php
$hasDiscount = $product->campaign_product_price;
@endphp
@if ($hasDiscount[0])
{{ showAmount($product->productPrice('personal')) }}
{{ showAmount($hasDiscount[1]) }}
@else
{{ showAmount($product->productPrice('personal')) }}
@endif
@endif