Attendize/config/laravel-omnipay.php

24 lines
463 B
PHP
Raw Normal View History

<?php
return [
// The default gateway to use
'default' => 'stripe',
// Add in each gateway here
'gateways' => [
'paypal' => [
'driver' => 'PayPal_Express',
'options' => [
'solutionType' => '',
'landingPage' => '',
'headerImageUrl' => ''
]
],
'stripe' => [
'driver' => 'Stripe',
'options'=> []
]
]
];