sarga/packages/Webkul/Payment/src/Config/paymentmethods.php

34 lines
1005 B
PHP
Raw Normal View History

2018-12-07 07:08:29 +00:00
<?php
return [
'cashondelivery' => [
'code' => 'cashondelivery',
'title' => 'Cash On Delivery',
'description' => 'shop::app.checkout.onepage.cash-desc',
2018-12-07 07:08:29 +00:00
'class' => 'Webkul\Payment\Payment\CashOnDelivery',
2019-09-03 07:06:57 +00:00
'active' => true,
'sort' => 1,
'default' => 'yes'
2018-12-07 07:08:29 +00:00
],
'moneytransfer' => [
'code' => 'moneytransfer',
2019-09-03 07:06:57 +00:00
'title' => 'Money Transfer',
'description' => 'shop::app.checkout.onepage.money-desc',
2018-12-07 07:08:29 +00:00
'class' => 'Webkul\Payment\Payment\MoneyTransfer',
2019-04-30 12:23:59 +00:00
'active' => true,
'sort' => 2,
'default' => 'no'
2018-12-07 07:08:29 +00:00
],
'paypal_standard' => [
'code' => 'paypal_standard',
'title' => 'Paypal Standard',
'description' => 'shop::app.checkout.onepage.paypal-desc',
2018-12-07 07:08:29 +00:00
'class' => 'Webkul\Paypal\Payment\Standard',
'sandbox' => true,
2019-09-03 07:06:57 +00:00
'active' => true,
2019-04-30 12:23:59 +00:00
'business_account' => 'test@webkul.com',
'sort' => 3,
'default' => 'no'
2018-12-07 07:08:29 +00:00
]
];