{{ substr($newPlan->name, 0, 1) }}
{{ $newPlan->product->name }}
@if ($newPlan->has_trial)
{{ $newPlan->trial_interval_count }} {{ $newPlan->trialInterval()->firstOrFail()->name }} {{ __(' free trial included') }}
@endif
@if ($newPlan->interval_count > 1)
{{ $newPlan->interval_count }} {{ ucfirst($newPlan->interval->name) }}
@else
{{ ucfirst($newPlan->interval->adverb) }} {{ __('subscription.') }}
@endif
{{ __('Starts immediately.') }}
{{ __('What you get:') }}
@if ($newPlan->product->features)
@foreach($newPlan->product->features as $feature)
{{ $feature['feature'] }}
@endforeach
@endif
{{ __('New Subscription price') }}
@money($totals->subtotal, $totals->currencyCode)
@if (!$isProrated)
{{ __('Due now') }}
@money($totals->amountDue, $totals->currencyCode)
@endif
@if ($isProrated)
@svg('info', 'h-6 w-6 text-primary-500 mr-2')
{{ __('You will be charged a prorated amount that covers the difference between your current plan and your new plan for the remainder of the current billing period.') }}
@endif