@extends('front.app_front') @section('content') @php $final_price = 0; @endphp

{{ PAYMENT }}

@include('front.customer_sidebar')
{{ PAY_NOW }}
@if($g_setting->paypal_status == 'Show') @endif @if($g_setting->stripe_status == 'Show') @endif @if($g_setting->razorpay_status == 'Show') @endif @if($g_setting->flutterwave_status == 'Show') @endif @if($g_setting->mollie_status == 'Show') @endif
{{ PAY_WITH_PAYPAL }}
{{ PAY_WITH_STRIPE }} @php $final_price = session()->get('package_price'); $final_price = session()->get('package_price')*session()->get('currency_value'); $final_price = round($final_price,2); $cents = $final_price*100; $customer_email = session()->get('email'); @endphp
@csrf
{{ PAY_WITH_RAZORPAY }}
@csrf @php $final_price = session()->get('package_price'); $final_price = session()->get('package_price')*session()->get('currency_value'); $final_price = round($final_price,2); $customer_email = session()->get('email'); @endphp
{{ PAY_WITH_FLUTTERWAVE }}
{{ PAY_WITH_MOLLIE }}
@csrf
{{ SELECTED_PACKAGE }}
{{ PACKAGE_NAME }} {{ session()->get('package_name') }}
{{ PACKAGE_PRICE }} {{ session()->get('currency_symbol') }}{{ session()->get('package_price')*session()->get('currency_value') }}
@php $paypal_mode = $g_setting->paypal_environment; $client = $g_setting->paypal_client_id; $secret = $g_setting->paypal_secret_key; @endphp @if($paypal_mode == 'sandbox') @php $paypal_url = 'https://api.sandbox.paypal.com/v1/'; $env_type = 'sandbox'; @endphp @elseif($paypal_mode == 'production') @php $paypal_url = 'https://api.paypal.com/v1/'; $env_type = 'production'; @endphp @endif @endsection