payment methods finish

This commit is contained in:
merdan 2022-03-02 14:56:10 +05:00
parent eca9a68aeb
commit ad0317fadd
4 changed files with 28 additions and 6 deletions

View File

@ -11,7 +11,7 @@ class Cash100 extends Payment
*
* @var string
*/
protected $code = 'cashbeforedelivery';
protected $code = 'cash100';
public function getRedirectUrl()
{

View File

@ -2,7 +2,18 @@
namespace Sarga\Payment\Methods;
class Cash50
{
use Webkul\Payment\Payment\Payment;
class Cash50 extends Payment
{
/**
* Payment method code
*
* @var string
*/
protected $code = 'cash50';
public function getRedirectUrl()
{
// TODO: Implement getRedirectUrl() method.
}
}

View File

@ -11,7 +11,7 @@ class Terminal100 extends Payment
*
* @var string
*/
protected $code = 'terminal';
protected $code = 'terminal100';
public function getRedirectUrl()
{

View File

@ -2,7 +2,18 @@
namespace Sarga\Payment\Methods;
class Terminal50
{
use Webkul\Payment\Payment\Payment;
class Terminal50 extends Payment
{
/**
* Payment method code
*
* @var string
*/
protected $code = 'terminal50';
public function getRedirectUrl()
{
// TODO: Implement getRedirectUrl() method.
}
}