PHPackages                             kyrax324/laravel-ipay88 - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. kyrax324/laravel-ipay88

ActiveLibrary[Payment Processing](/categories/payments)

kyrax324/laravel-ipay88
=======================

IPay88 Payment Gateway Integration for Laravel Application

v1.0.2(4y ago)724.3k↓36%MITPHPPHP &gt;=7.2

Since Jun 1Pushed 4y ago1 watchersCompare

[ Source](https://github.com/Kyrax324/laravel-ipay88)[ Packagist](https://packagist.org/packages/kyrax324/laravel-ipay88)[ RSS](/packages/kyrax324-laravel-ipay88/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (8)Used By (0)

Laravel IPay88
==============

[](#laravel-ipay88)

IPay88 Payment Gateway Integration for Laravel Application.

Installation
------------

[](#installation)

```
composer require kyrax324/laravel-ipay88
```

Configuration
-------------

[](#configuration)

Publish the config file &amp; setup the `merchantKey` and `merchantCode`

```
php artisan vendor:publish --provider="IPay88\IPay88ServiceProvider" --tag=config
```

Views (Optional)
----------------

[](#views-optional)

If you wish to modify the payment form, you may publish the views

```
php artisan vendor:publish --provider="IPay88\IPay88ServiceProvider" --tag=views
```

Usage
-----

[](#usage)

According to IPay88 documentation, each payment order will undergoes the following steps:

1. Prepare &amp; Submit Request to IPay88 Server
2. Handle Response from IPay88 Server
    - Response (set from `responseURL`)
    - Backend Post (set from `backendURL`)
3. Requery to check payment status (If needed)

### 1. Prepare &amp; Submit Request to IPay88 Server

[](#1-prepare--submit-request-to-ipay88-server)

#### `IPay88\Request\RequestBuilder`

[](#ipay88requestrequestbuilder)

- create payment request and return view

```
use IPay88\Request\RequestBuilder as IPay88RequestBuilder;

$builder = new IPay88RequestBuilder();
$builder->setRefNo(1);
$builder->setAmount(1);
$builder->setCurrency('MYR');
$builder->setProdDesc('Sample Prod Desc');
$builder->setUserName('Sample User Name');
$builder->setUserEmail('Sample User Email');
$builder->setUserContact('Sample User Contact');
$builder->setResponseURL("http://sample.com/response_url");
$builder->setBackendURL("http://sample.com/backend_url");

return $builder->loadPaymentFormView();
```

### 2. Handle Response from IPay88 Server

[](#2-handle-response-from-ipay88-server)

#### `IPay88\Request\Response`

[](#ipay88requestresponse)

##### A. Response (set from responseURL)

[](#a-response-set-from-responseurl)

```
use IPay88\Responses\Response as IPay88Response;

$response = new IPay88Response($request);

// logic to check if order has been updated before

if($response->isSuccess()){
	// update order to PAID
}else{
	// update order to FAIL
}
```

##### B. Backend Post (set from backendURL)

[](#b-backend-post-set-from-backendurl)

> Backend post will be called simultaneously with responseURL (if payment is success)
>
> IPay88 Server will re-try to call up to 3 times on different interval if no ‘RECEIVEOK’ acknowledgement detected

```
use Ipay88\Responses\Response as IPay88Response;

$response = new IPay88Response($request);

// logic to check if order has been updated before

if($response->isSuccess()){
	// update order to PAID
 	return "RECEIVEOK";
}else{
	// update order to FAIL
}
```

### 3. Requery to check payment status (If needed)

[](#3-requery-to-check-payment-status-if-needed)

#### `IPay88\Request\RequeryBuilder`

[](#ipay88requestrequerybuilder)

```
use IPay88\Request\RequeryBuilder as IPay88RequeryBuilder;

$builder = new IPay88RequeryBuilder();
$builder->setRefNo(1);
$builder->setAmount(1);

if($builder->isSuccess()){
	// update order to PAID
}else{
	// update order to FAIL
}
```

FAQ
---

[](#faq)

For more information, kindly refer to [IPay88 Integration FAQ](https://docs.google.com/document/d/13hYO2RstXHgJCsWBq36N1x3io3tyOZY_6S_kuaIjdjw/edit)

Issues
------

[](#issues)

If you found any issue, please [open a new issue](https://github.com/Kyrax324/laravel-ipay88/issues)

###  Health Score

31

—

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity31

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity51

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~8 days

Total

7

Last Release

1765d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8e578141f87b614198736dc428f34e11c46cf8f822fbca9d0c5d83d0e824597b?d=identicon)[kyrax324](/maintainers/kyrax324)

---

Top Contributors

[![Kyrax324](https://avatars.githubusercontent.com/u/72662771?v=4)](https://github.com/Kyrax324 "Kyrax324 (10 commits)")

---

Tags

laravelipay88

### Embed Badge

![Health badge](/badges/kyrax324-laravel-ipay88/health.svg)

```
[![Health](https://phpackages.com/badges/kyrax324-laravel-ipay88/health.svg)](https://phpackages.com/packages/kyrax324-laravel-ipay88)
```

###  Alternatives

[anandsiddharth/laravel-paytm-wallet

Integrate paytm wallet easily with this package. This package uses official Paytm PHP SDK's

104421.1k7](/packages/anandsiddharth-laravel-paytm-wallet)[dena-a/iran-payment

a Laravel package to handle Internet Payment Gateways for Iran Banking System

312.4k1](/packages/dena-a-iran-payment)[threesquared/laravel-paymill

Laravel wrapper for the Paymill API

121.3k](/packages/threesquared-laravel-paymill)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
