@if ($plan->is_featured == 1)
@if (currencyShouldDisplayOnRight(currency()->symbol))
@if ($plan->price !== ($newDiscountedPrice ?? $plan->price))
{{ $plan->price }}{{ currency()->symbol }}
{{ $newDiscountedPrice }}{{ currency()->symbol }}
@else
{{ $plan->price }}
{{ currency()->symbol }}
@endif
@else
@if ($plan->price !== ($newDiscountedPrice ?? $plan->price))
{{ currency()->symbol }}{{ $plan->price }}
{{ currency()->symbol }}{{ $newDiscountedPrice }}
@else
{{ currency()->symbol }}{{ $plan->price }}
@endif
@endif
/
{{ __('One time') }}
{{ __($plan->name) }}