@foreach (['danger', 'warning', 'info', 'error'] as $msg)
@php
$class = $msg;
if ($msg == 'error') {
$class = 'danger';
}
@endphp
@if(Session::has('alert-' . $msg))
{{ trans('messages.' . $msg) }}
{!! preg_replace('/[\r\n]+/', ' ', Session::get('alert-' . $msg)) !!}
@endif
@endforeach
{{ $subscription->plan->getBillableFormattedPrice() }}
{!! trans('cashier::messages.paypal.checkout.intro', [
'plan' => $subscription->plan->getBillableName(),
'price' => $subscription->plan->getBillableFormattedPrice(),
]) !!}
-
{{ trans('cashier::messages.paypal.plan') }}
{{ $subscription->plan->getBillableName() }}
-
{{ trans('cashier::messages.paypal.next_period_day') }}
{{ $subscription->current_period_ends_at }}
-
{{ trans('cashier::messages.paypal.amount') }}
{{ $subscription->plan->getBillableFormattedPrice() }}
-
{{ trans('cashier::messages.paypal.interval') }}
{{ trans_choice('cashier::messages.interval.' . $subscription->plan->getBillableInterval(), $subscription->plan->getBillableIntervalCount()) }}