@php $currency=\App\Options::where('key','currency_name')->select('value')->first(); @endphp

{{ $product->title }}

{{ strtoupper($currency->value) }}: {{ number_format($product->price->price,2) }}

{{ $product->excerpt->content }}

Add-Ons on {{ $product->title }}

Select up to {{ $product->addons->count() }} (optional)

{{ __('optional') }}
@csrf
@foreach($product->addons as $addon)
{{ strtoupper($currency->value) }}: {{ number_format($addon->price->price,2) }}
@endforeach
{{ __('Special instructions') }}

{{ __('You can write down here any special instructions') }}