@extends(view_path('master')) @section('additional_head_tags') @foreach(config('payments_gateways', []) as $name => $gateway) @if(config("payment_gateways.{$name}.assets")) @foreach(config("payment_gateways.{$name}.assets", []) as $asset) @if($asset["type"] == "js") @elseif($asset["type"] == "css") @elseif($asset["type"] == "js_init") @endif @endforeach @endif @endforeach @endsection @section('body')
{{ __('Processing') }}
{{ __('Membership') }}
{{ __(':name Plan', ['name' => $subscription->name]) }}
{{ $subscription->name }}
@{{ price(totalAmount, true, true) }}
@if(strip_tags($subscription->description)) {!! $subscription->description !!} @elseif($subscription->specifications) @foreach($subscription->specifications ?? [] as $specification)
{{ $specification->text }}
@endforeach @endif
{{ __('Order summary') }}
{{ __('Purchase Fee : ') }} @{{ price(getPaymentFee()) }}
{{ __('Discount : ') }} @{{ price(Number(couponValue).toFixed(2)) }}
{{ __('Total : ') }} @{{ price(getTotalAmount()) }}
{{ __('Payment method') }}
{{ __('Coupon code') }}
@{{ couponRes.msg }}
@foreach(config('payments_gateways', []) as $name => $gateway) @if(config("payment_gateways.{$name}.form.checkout_buttons")) @foreach(config("payment_gateways.{$name}.form.checkout_buttons", []) as $checkout_button) @if($checkout_button["replace"] ?? null) {!! str_replace_adv($checkout_button["html"], $checkout_button["replace"]) !!} @else {!! $checkout_button["html"] !!} @endif @endforeach @endif @endforeach
@if(config('app.prepaid_credits.enabled') || config('affiliate.enabled')) @endif @endsection