PHPackages                             waqarraza/jazzcash-laravel - 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. waqarraza/jazzcash-laravel

ActiveProject[Payment Processing](/categories/payments)

waqarraza/jazzcash-laravel
==========================

Jazz Cash implementation with Laravel

v1.0.1(4y ago)078MITPHPPHP ^7.0|^8.0

Since Sep 22Pushed 4y ago1 watchersCompare

[ Source](https://github.com/WaqarRaza/jazzcash-laravel)[ Packagist](https://packagist.org/packages/waqarraza/jazzcash-laravel)[ RSS](/packages/waqarraza-jazzcash-laravel/feed)WikiDiscussions main Synced 2d ago

READMEChangelog (2)Dependencies (1)Versions (3)Used By (0)

Laravel Jazz Cash Package
=========================

[](#laravel-jazz-cash-package)

Step 1
------

[](#step-1)

```
composer require waqarraza/jazzcash-laravel
```

Step 2
------

[](#step-2)

For Laravel version &lt;= 5.4

You can skip this step for Laravel version &gt;= 5.5

Add these following lines in config/app.php

```
'providers' => [
    ...
    Waqar\Jazzcash\JazzCashServiceProvider::class,
    ...
]

'aliases' => [
    ...
    'JazzCash' => Waqar\Jazzcash\JazzCashFacade::class
    ...
]
```

Step 3
------

[](#step-3)

publish config and add details

```
php artisan vendor:publish --provider="Waqar\Jazzcash\JazzCashServiceProvider"
```

Usage
=====

[](#usage)

Add merchant details in config/jazzcash.php file

```
'merchant_id' => '',
'password' => '',
'integrity_salt' => '',
```

Set return page in config

```
'return_url' => 'http://127.0.0.1/returnpage',
```

To check out add function in controller

```
public function checkout() {
    $amount = 10 ; // in pkr
    $description = "Some checkout details";
    return JazzCash::checkout($amount, $description)
}

public function checkout_return(Request $request) {
    if($request->get('pp_ResponseCode') === '000') {
        ... do something on success
    } else {
        ... do something in failure
    }
}
```

checkout function will return a view which submits a request to jazz cash checkout page.

checkout\_return function will be called on `return_url`

Sandbox
=======

[](#sandbox)

For testing, you can use this number `03123456789`

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity9

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity56

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 85.7% 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 ~0 days

Total

2

Last Release

1694d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/4cb0f2ba117e75fb61a19d3c642553cca1749f7aff22e5fb5ab1744248442d24?d=identicon)[WaqarRaza](/maintainers/WaqarRaza)

---

Top Contributors

[![WaqarRaza](https://avatars.githubusercontent.com/u/44795942?v=4)](https://github.com/WaqarRaza "WaqarRaza (12 commits)")[![waqar-invozone](https://avatars.githubusercontent.com/u/88082404?v=4)](https://github.com/waqar-invozone "waqar-invozone (2 commits)")

### Embed Badge

![Health badge](/badges/waqarraza-jazzcash-laravel/health.svg)

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

###  Alternatives

[laraveldaily/laravel-invoices

Missing invoices for Laravel

1.5k1.3M4](/packages/laraveldaily-laravel-invoices)[musahmusah/laravel-multipayment-gateways

A Laravel Package that makes implementation of multiple payment Gateways endpoints and webhooks seamless

852.2k1](/packages/musahmusah-laravel-multipayment-gateways)[karson/mpesa-php-sdk

172.2k](/packages/karson-mpesa-php-sdk)

PHPackages © 2026

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