sarga/packages/Sarga/Payment/Config/paymentmethods.php

53 lines
1.9 KiB
PHP
Raw Normal View History

2022-02-28 09:19:57 +00:00
<?php
return [
2022-03-02 09:47:21 +00:00
'cash100' =>[
2022-03-02 10:04:31 +00:00
'code' => 'cash100',
2022-03-01 13:13:28 +00:00
'title' => "I\\'ll pay by cash with deposit 100%",
'description' => 'Pay deposit 100% to gain 10% discount',
2022-03-02 09:47:21 +00:00
'class' => 'Sarga\Payment\Methods\Cash100',
2022-03-01 13:13:28 +00:00
'active' => true,
'sort' => 2,
],
2022-03-02 09:47:21 +00:00
'cash50' =>[
2022-03-02 10:04:31 +00:00
'code' => 'cash50',
2022-03-02 09:47:21 +00:00
'title' => "I\\'ll pay by cash with deposit 50%",
'description' => 'Pay deposit 50%',
'class' => 'Sarga\Payment\Methods\Cash50',
'active' => true,
'sort' => 2,
],
'terminal100' => [
2022-03-02 10:04:31 +00:00
'code' => 'terminal100',
2022-03-02 13:10:22 +00:00
'title' => "I\\'ll pay by card on terminal with deposit 100%",
2022-03-01 13:13:28 +00:00
'description' => '50% deposit is taken before delivery',
2022-03-02 09:47:21 +00:00
'class' => 'Sarga\Payment\Methods\Terminal100',
'active' => true,
'sort' => 3,
],
'terminal50' => [
2022-03-02 10:04:31 +00:00
'code' => 'terminal50',
2022-03-02 13:10:22 +00:00
'title' => "I\\'ll pay by card on terminal with deposit 50%",
2022-03-02 09:47:21 +00:00
'description' => '50% deposit is taken before delivery',
'class' => 'Sarga\Payment\Methods\Terminal50',
2022-03-01 13:13:28 +00:00
'active' => true,
'sort' => 3,
],
2022-02-28 09:19:57 +00:00
'altynasyr' =>[
'code' => 'altynasyr',
2022-03-01 13:13:28 +00:00
'title' => "I\\'ll pay by Altyn Asyr card",
2022-02-28 09:19:57 +00:00
'description' => 'Altyn Asyr Kartly Töleg',
2023-06-09 12:34:08 +00:00
'api_url' => 'https://epg.rysgalbank.tm/epg/rest/',
2023-02-24 11:08:19 +00:00
'class' => 'Sarga\Payment\Methods\Rysgal',
2022-02-28 09:19:57 +00:00
'active' => false,
'sort' => 4
],
2022-03-02 09:47:21 +00:00
// 'tfeb' =>[
// 'code' => 'tfeb',
// 'title' =>"I\\'ll pay by TFEB card",
// 'description' => 'THE STATE BANK FOR FOREIGN ECONOMIC AFFAIRS OF TURKMENISTAN',
// 'api_url' => 'https://ecomt.tfeb.gov.tm/v1/orders/',
// 'class' => 'Sarga\Payment\Methods\TFEB',
// 'active' => false,
// 'sort' => 5
// ]
2022-02-28 09:19:57 +00:00
];