sarga/config/paymentmethods.php

34 lines
918 B
PHP
Raw Normal View History

2018-09-20 10:01:51 +00:00
<?php
return [
'cashondelivery' => [
'code' => 'cashondelivery',
'title' => 'Cash On Delivery',
'description' => 'Cash On Delivery',
'class' => 'Webkul\Payment\Payment\CashOnDelivery',
2018-10-05 11:59:43 +00:00
'order_status' => 'pending',
'active' => true
],
'moneytransfer' => [
'code' => 'moneytransfer',
'title' => 'Money Transfer',
'description' => 'Money Transfer',
'class' => 'Webkul\Payment\Payment\MoneyTransfer',
2018-10-05 11:59:43 +00:00
'order_status' => 'pending',
2018-09-20 10:01:51 +00:00
'active' => true
2018-11-16 10:11:08 +00:00
],
'paypal_standard' => [
'code' => 'paypal_standard',
'title' => 'Paypal Standard',
'description' => 'Paypal Standard',
'class' => 'Webkul\Paypal\Payment\Standard',
'order_status' => 'pending_payment',
'sandbox' => true,
'active' => true,
'business_account' => 'test@webkul.com'
2018-09-20 10:01:51 +00:00
]
];
?>