- register stripe payment method

This commit is contained in:
Čarodej
2021-12-28 16:26:12 +01:00
parent 0194e546fd
commit 47e834c368
6 changed files with 512 additions and 113 deletions

View File

@@ -53,7 +53,6 @@
app_logo_horizontal: '{{ $settings->app_logo_horizontal ?? null }}',
app_description: '{{ $settings->app_description ?? __t('app_description') }}',
stripe_public_key: '{{ config('cashier.key') ?? null }}',
app_payments_active: {{ $settings->payments_active ?? 0 }},
subscriptionType: '{{ $settings->subscription_type ?? 'none' }}',
@@ -83,6 +82,7 @@
// Payment drivers
paystack_public_key: '{{ env('PAYSTACK_PUBLIC_KEY') }}',
paypal_client_id: '{{ env('PAYPAL_CLIENT_ID') }}',
stripe_public_key: '{{ env('STRIPE_PUBLIC_KEY') ?? null }}',
}
</script>