Download the PHP package egyjs/arb without Composer
On this page you can find all versions of the php package egyjs/arb. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Package arb
Short Description Laravel API for Al Rajhi Bank's payment gateway (ARB)
License MIT
Homepage https://github.com/egyjs/arb
Informations about the package arb
Al Rajhi Bank payment gateway API wrapper (ARB)
This package is a wrapper around the Al Rajhi Bank payment gateway API, it allows you to initiate a payment request hosted on the Bank website or on the merchant website, and also allows you to refund a payment.
Support us
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
Installation
You can install the package via composer:
//: # ()
You can publish the config file with:
This is the contents of the published config file:
add the following to your .env
file
//: # () //: # ()
Usage
Bank hosted payment
to initiate a payment request hosted on the Bank website
merchant hosted payment
to initiate a payment request hosted on the merchant website, you need to create a form for the card details, and pass
the card details to the Arb::card()
method, then call the Arb::initiatePayment()
method as shown below
Refund a payment
to refund a payment you need to call the Arb::refund()
method as shown below
manage data sent & received from the bank
to send custom data to the bank, you can use the Arb::data()
method before any transaction as shown below
this data will be sent to the bank and will be returned in the response from the bank,
ArbPaymentSuccessEvent
will be fired with the received data from the bank as shown below
Note: you can listen to the
ArbPaymentSuccessEvent
in both ways:EventServiceProvider::$listen
orEvent::listen()
method
Handle the response
egyjs/arb has a built-in event driven architecture (EDA) system to handle the response from the bank;
you can listen to the ArbPaymentSuccessEvent
event to handle the success response,
and the ArbPaymentFailedEvent
event to handle the fail response,
The use of events allows for decoupling between the processing logic and the actions taken upon success or failure. By emitting events, the processing logic doesn't need to know about or be tightly coupled to the actions taken upon success or failure. you can listen to the events in 2 ways:
-
using the
EventServiceProvider
class - using the
Event::listen()
method
handle the response in the controller
if you want to handle the using a custom route instead of the events,
you can pass the success and fail urls to the Arb::successUrl()
and Arb::failUrl()
methods as shown below
your /routes/web.php
file should look like this
//: # () //: # ()
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- egyjs
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of arb with dependencies
spatie/laravel-package-tools Version ^1.16
illuminate/contracts Version ^10.0||^11.0
ext-openssl Version *