@php $version = config('app.version'); @endphp @php $currency = $_COOKIE['currency']??Currency::GBP; $currencySign = ($currency == Currency::GBP)?'£ ':'¥ '; @endphp @if($product) @php $isDiscounted = ($product->currentPrice && $product->currentPrice < $product->originalPrice); @endphp

{{ $product->name }}

@if($product->currentPrice) {{$currencySign.number_format(($product->currentPrice), 2, ".", ",")}} @else {{$currencySign.number_format(($product->originalPrice), 2, ".", ",")}} @endif

@if($isDiscounted)

{{$currencySign.number_format($product->originalPrice, 2, ".", ",")}}起

@endif 去购买
@endif