@if(!$product->is_free)
{{-- License Selection --}}
{{-- License Dropdown --}}
{{-- Selected Price --}}
@php
$defaultLicense = $product->regularLicense;
$originalPrice = $defaultLicense->price;
$discount = $product->discount ?? 0;
$discountedPrice = getDiscountedPrice($originalPrice, $discount);
@endphp
@if ($discount > 0)
{{ $general->cur_sym }}{{ showAmount($originalPrice) }}
@endif
{{ $general->cur_sym }}{{ showAmount($discountedPrice) }}
{{-- Hidden License Input --}}
{{-- License Features --}}
@foreach (json_decode($product->regularLicense->features) ?? [] as $item)
-
{{ __($item) }}
@endforeach
@endif
{{-- Purchase Button --}}
{{-- Purchase Info --}}
{{ $product->sale ?? 0 }} @lang('Purchases')