fix: 🐛 correct stripe_methods seed
This commit is contained in:
parent
50f12d3cd6
commit
30879c606d
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ class SettingsSeeder extends Seeder
|
|||
Settings::firstOrCreate([
|
||||
'key' => 'SETTINGS::PAYMENTS:STRIPE:METHODS',
|
||||
], [
|
||||
'value' => env('STRIPE_METHODS', '[\'card\', \'ideal\']'),
|
||||
'value' => env('STRIPE_METHODS', 'card,sepa_debit'),
|
||||
'type' => 'string',
|
||||
'description' => 'Comma seperated list of payment methods that are enabled (https://stripe.com/docs/payments/payment-methods/integration-options)'
|
||||
]);
|
||||
|
|
Loading…
Reference in a new issue