@if (session('status'))
{{ session('status') }}
@endif
Choose your payment option below
{{-- Scarcity & urgency banners --}}
@if($product->bonus_ends_at && strtotime($product->bonus_ends_at) > time())
@if($product->bonus_message)
{{ $product->bonus_message }}
@else
Bonus offer active!
@endif
Offer expires in
@endif
@if($product->enrollment_limit && $spotsRemaining !== null && $spotsRemaining <= 5 && $spotsRemaining > 0)
Only {{ $spotsRemaining }} {{ Str::plural('spot', $spotsRemaining) }} left!
@endif
@if($product->sale_ends_at && strtotime($product->sale_ends_at) > time())
Sale ends in
@endif
@if($addedPayments && count($addedPayments) > 0)
Items in your cart
{{ $payment->content['title'] }}
{{ currencySign() }}{{ number_format($payment->amount) }}
@foreach($addedPayments as $child)
@php $childCourse = App\Models\Content::find($child->content_id); @endphp
@if($childCourse)
{{ $childCourse->title }}
{{ currencySign() }}{{ number_format($child->amount) }}
@endif
@endforeach
@endif
One-Time Payment {{ currencySign() }}{{ number_format($payment->amount) }}
Pay once for this course only.
@if($showSubscriptionOnPaymentPage)
Monthly Subscription {{ currencySign() }}{{ number_format($monthlySubscriptionPrice) }}/month
Get access to all courses with one monthly plan.
@endif
{{ $payment->content['id'] }}