@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('post_js') @endsection @section('body')
{{ __('Processing') }}
@if(config('payments.enable_add_to_cart'))
{{ __('Shopping cart') }}
{!! __('You have :cartItems item(s) in your shopping cart', ['cartItems' => '@{{ cartItems }}']) !!}
@endif
@if(config('payments.enable_add_to_cart'))
{{ __('Shopping cart') }}
{!! __('You have :cartItems item(s) in your shopping cart', ['cartItems' => '@{{ cartItems }}']) !!}
@endif
@{{ prd.name }}
@{{ __(prd.license_name) }}
@{{ price(prd.price, true) }}
{{ __('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