@extends('front_end.layouts.home') @section('title', 'Deposit via PayPal') @section('content')
Deposit via PayPal
Redirect to PayPal to complete your payment
@if(session('error'))
{{ session('error') }}
@endif
@csrf
$
Minimum $1
Cancel
Mode: {{ setting('paypal_mode', env('PAYPAL_MODE', 'sandbox')) }}
Client ID present: {{ setting('paypal_id', env('PAYPAL_CLIENT_ID')) ? 'yes' : 'no' }}
Client Secret present: {{ setting('paypal_secret', env('PAYPAL_CLIENT_SECRET')) ? 'yes' : 'no' }}
Environment Mode: {{ env('PAYPAL_MODE', 'not set') }}
Client ID from ENV: {{ env('PAYPAL_CLIENT_ID') ? 'yes' : 'no' }}
Client Secret from ENV: {{ env('PAYPAL_CLIENT_SECRET') ? 'yes' : 'no' }}
@push('scripts') @endpush @endsection