first upload all files

This commit is contained in:
NW
2023-06-11 13:14:03 +01:00
parent f14dbc52b5
commit c08b36d1b6
1705 changed files with 106852 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
<?php
namespace Modules\Payment\Gateways;
use stdClass;
use Exception;
use Illuminate\Http\Request;
use Modules\Order\Entities\Order;
use Modules\Payment\GatewayInterface;
use Modules\Payment\Responses\InstamojoResponse;
use Modules\Payment\Responses\PaystackResponse;
class Paystack implements GatewayInterface
{
public $label;
public $description;
const SUPPORTED_CURRENCIES = ['NGN', 'GHS', 'USD', 'ZAR'];
public function __construct()
{
$this->label = setting('paystack_label');
$this->description = setting('paystack_description');
}
public function purchase(Order $order, Request $request)
{
if (!in_array(currency(), self::SUPPORTED_CURRENCIES)) {
throw new Exception(trans('payment::messages.currency_not_supported'));
}
return new PaystackResponse($order, $request);
}
public function complete(Order $order)
{
return new PaystackResponse($order, request());
}
}