@php($newDiscountedPrice = $newDiscountedPrice ?? 0)
{{ __($plan->name) }} / {{ $plan->type == 'prepaid' ? __('One time') : __(formatCamelCase($plan->frequency)) }} @lang('Plan')
@if ($plan->is_featured == 1){{ __('Subtotal') }}
{!! displayCurr(currency()->symbol, $plan->price, 0, null) !!}
{{ __('Discount') }}
{!! displayDiscountOrCouponName($plan) !!}- {!! displayCurr(currency()->symbol, $plan->price - $newDiscountedPrice, null) !!}
{{ __('Tax') }} ({{ $taxRate ?? 0 }}% VAT)
{!! displayCurr(currency()->symbol, $taxValue ?? null, tax_included: $plan->price_tax_included) !!}
{{ __('Total') }}
{!! displayCurr(currency()->symbol, $plan->price, $taxValue ?? 0, $newDiscountedPrice ?? null, tax_included: $plan->price_tax_included) !!}