1. Go to this page and download the library: Download egyjs/arb library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
egyjs / arb example snippets
return [
'mode' => env('ARB_MODE', 'test'), // test or live
'test_merchant_endpoint' => 'https://securepayments.alrajhibank.com.sa/pg/payment/tranportal.htm',
'live_merchant_endpoint' => 'https://digitalpayments.alrajhibank.com.sa/pg/payment/tranportal.htm',
'test_bank_hosted_endpoint' => 'https://securepayments.alrajhibank.com.sa/pg/payment/hosted.htm',
'live_bank_hosted_endpoint' => 'https://digitalpayments.alrajhibank.com.sa/pg/payment/hosted.htm',
'tranportal_id' => env('ARB_TRANPORTAL_ID'),
'tranportal_password' => env('ARB_TRANPORTAL_PASSWORD'),
"resource_key" => env('ARB_RESOURCE_KEY'), // your resource key
"currency_code" => env('ARB_CURRENCY_CODE', '682'),
];
use Egyjs\Arb\Facades\Arb;
$responce = Arb::initiatePayment(100); // 100 to be paid
dd($responce);
/** @example
{#
+"success": true
+"url": "https://securepayments.alrajhibank.com.sa/pg/paymentpage.htm?PaymentID=?paymentId=000000000000000000"
}
*/
use Egyjs\Arb\Facades\Arb;
use Egyjs\Arb\Objects\Card;
Arb::card([
'number' => '5105105105105100',
'year' => '20'.'24',
'month' => '12',
'name' => 'AbdulRahman',
'cvv' => '123',
'type' => Card::CREDIT // or Card::DEBIT
]);
$responce = Arb::initiatePayment(100); // 100 to be paid
dd($responce);
/** @example
{#
+"success": true
+"url": "https://securepayments.alrajhibank.com.sa/pg/payment/hosted.htm?paymentId=000000000000000000&id=000x0bAdcEF0HfZ"
}
*/
use Egyjs\Arb\Facades\Arb;
$responce = Arb::refund('000000000000000000', 100); // 100 to be refunded
dd($responce);
/** @example
{#
+"success": true
+"data": {}
}
*/
use Egyjs\Arb\Facades\Arb;
Arb::data([
'request_id' => 23,
'user_id' => 43,
]);
// initiate a payment or make a refund
use Egyjs\Arb\Events\ArbPaymentSuccessEvent;
Event::listen(ArbPaymentSuccessEvent::class, function (ArbPaymentSuccessEvent $event) {
$response = $event->response;
// to get the data sent to the bank
$data = $response->getOriginalData();
});
use Egyjs\Arb\Events\ArbPaymentFailedEvent;
use Egyjs\Arb\Events\ArbPaymentSuccessEvent;
protected $listen = [
// ...
ArbPaymentSuccessEvent::class => [
LogSuccessArbPaymentListener::class, // add any listener classes you want to handle the success payment
],
ArbPaymentFailedEvent::class => [
LogFailedArbPaymentListener::class, // add any listener classes you want to handle the failed payment
],
];
use Egyjs\Arb\Events\ArbPaymentFailedEvent;
use Egyjs\Arb\Events\ArbPaymentSuccessEvent;
Event::listen(ArbPaymentSuccessEvent::class, function (ArbPaymentSuccessEvent $event) {
// handle the success payment
});
Event::listen(ArbPaymentFailedEvent::class, function (ArbPaymentFailedEvent $event) {
// handle the failed payment
});
use Egyjs\Arb\Facades\Arb;
Arb::successUrl('http://localhost:8000/arb/response')
->failUrl('http://localhost:8000/arb/response');
$responce = Arb::initiatePayment(100); // 100 to be paid
dd($responce);
/** @example
{#
+"success": true
+"url": "http://localhost:8000/success/handle?paymentId=000000000000000000"
}
*/
use Illuminate\Http\Request;
Route::post('/arb/response', function (Request $request) {
if ($request->status == 'success') {
// handle the success payment
} else {
// handle the failed payment
}
});