-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
69 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,70 @@ | ||
# AlQutaibiBank-payment | ||
|
||
<img alt="img.webp" height="250" src="img.webp" width="250" style="object-fit: contain"/> | ||
|
||
laravel package for AlQutaibiBank payment getway | ||
install the package | ||
`composer require alsharie/alqutaibibank-payment` | ||
|
||
You can publish using the following command | ||
|
||
`php artisan vendor:publish --provider="Alsharie\AlQutaibiBankPayment\AlQutaibiBankServiceProvider"` | ||
|
||
When published, the `config/AlQutaibiBank.php` config file contains: | ||
|
||
```php | ||
return [ | ||
'app_key' => env('AlQutaibiBank_APP_KEY'), | ||
'api_key' => env('AlQutaibiBank_API_KEY'), | ||
'payment_destnation' => env('AlQutaibiBank_PAYMENT_DESTNATION'), | ||
'url' => [ | ||
'base' => env('AlQutaibiBank_BASE_URL', 'https://newdc.qtb-bank.com:5052/PayBills'), | ||
] | ||
]; | ||
``` | ||
|
||
|
||
-------------------- | ||
|
||
To purchase using AlQutaibiBank payment | ||
|
||
### 1. RequestPayment | ||
|
||
```php | ||
$alqutaibi = new AlQutaibiBank(); | ||
$response = $alqutaibi | ||
->setPaymentCustomerNo($user_phone) // TargetMSISDN | ||
->setPaymentCode($payment_code) | ||
->setPaymentAmount($total_payment) | ||
->setPaymentCurr(1) //1 = YER | ||
->RequestPayment(); | ||
|
||
if ($response->isSuccess()) { | ||
$response->getTransactionID()(); | ||
... | ||
... | ||
} | ||
|
||
``` | ||
|
||
### 2. Confirm Payment | ||
|
||
```php | ||
$alqutaibi = new AlQutaibiBank(); | ||
$response = $alqutaibi | ||
->setPaymentCustomerNo($user_phone) | ||
->setPaymentCode($payment_code) | ||
->setPaymentAmount($total_payment) | ||
->setPaymentCurr(1) | ||
->setPaymentOTP($otp) // customer otp | ||
->confirmPayment(); | ||
|
||
if ($response->isSuccess()) { | ||
return $response->getTransactionId(); | ||
} | ||
``` | ||
|
||
|
||
you can get the **request** using `$response->getRequest()` | ||
|
||
you can get the full **response body** using `$response->body()` for all requests |