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

53 lines
1.9 KiB
PHP

<?php
return [
'cash100' =>[
'code' => 'cash100',
'title' => "I\\'ll pay by cash with deposit 100%",
'description' => 'Pay deposit 100% to gain 10% discount',
'class' => 'Sarga\Payment\Methods\Cash100',
'active' => true,
'sort' => 2,
],
'cash50' =>[
'code' => 'cash50',
'title' => "I\\'ll pay by cash with deposit 50%",
'description' => 'Pay deposit 50%',
'class' => 'Sarga\Payment\Methods\Cash50',
'active' => true,
'sort' => 2,
],
'terminal100' => [
'code' => 'terminal100',
'title' => "I\\'ll pay by card on terminal with deposit 100%",
'description' => '50% deposit is taken before delivery',
'class' => 'Sarga\Payment\Methods\Terminal100',
'active' => true,
'sort' => 3,
],
'terminal50' => [
'code' => 'terminal50',
'title' => "I\\'ll pay by card on terminal with deposit 50%",
'description' => '50% deposit is taken before delivery',
'class' => 'Sarga\Payment\Methods\Terminal50',
'active' => true,
'sort' => 3,
],
'altynasyr' =>[
'code' => 'altynasyr',
'title' => "I\\'ll pay by Altyn Asyr card",
'description' => 'Altyn Asyr Kartly Töleg',
'api_url' => 'https://mpi.gov.tm/payment/rest/',
'class' => 'Sarga\Payment\Methods\AltynAsyr',
'active' => false,
'sort' => 4
],
// '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
// ]
];