@extends('layouts.app') @section('page-header') @endsection @section('content')
@csrf

{{ __('Secure Checkout') }}

{{ __('Select Payment Option') }}
@foreach ($payment_platforms as $payment_platform)
@endforeach
@foreach ($payment_platforms as $payment_platform) @if ($payment_platform->name !== 'BankTransfer')
@includeIf('components.'.strtolower($payment_platform->name).'-collapse')
@else

{{ $bank['bank_instructions'] }}

Order ID: {{ $bank_order_id }}

{{ $bank['bank_requisites'] }}
@endif @endforeach

{{ __('Plan Name') }}: {{ $id->plan_name }} ({{ ucfirst($id->payment_frequency) . ' Plan'}})

{{ __('Purchase Summary') }}

{{ __('Subtotal') }} {!! config('payment.default_system_currency_symbol') !!} @if (config('payment.decimal_points') == 'allow') {{ number_format((float)$id->price, 2, '.', '') }} @else {{ number_format($id->price) }} @endif

{{ __('Taxes') }} ({{ config('payment.payment_tax') }}%){!! config('payment.default_system_currency_symbol') !!} @if (config('payment.decimal_points') == 'allow') {{ number_format((float)$tax_value, 2, '.', '') }} @else {{ number_format($tax_value) }} @endif

{{ __('Total') }}

{{ __('Discount Applied') }}

{{ __('Total Payment') }} {!! config('payment.default_system_currency_symbol') !!} @if (config('payment.decimal_points') == 'allow') {{ number_format((float)$total_value, 2, '.', '') }} @else {{ number_format($total_value) }} @endif {{ $currency }}

@endsection