PHPackages                             kodbee/jomabee-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. kodbee/jomabee-laravel

ActiveLibrary[Payment Processing](/categories/payments)

kodbee/jomabee-laravel
======================

Laravel integration for the Jomabee payment API by Kodbee — facade, config, and webhook verification.

v1.0.0(today)00MITPHPPHP &gt;=8.1

Since Jun 19Pushed todayCompare

[ Source](https://github.com/kodbeedev/jomabee-laravel)[ Packagist](https://packagist.org/packages/kodbee/jomabee-laravel)[ Docs](https://kodbee.com)[ RSS](/packages/kodbee-jomabee-laravel/feed)WikiDiscussions main Synced today

READMEChangelogDependencies (3)Versions (2)Used By (0)

Jomabee for Laravel
===================

[](#jomabee-for-laravel)

Laravel integration for the [Jomabee](https://kodbee.com) payment API by **Kodbee**. Wraps [`kodbee/jomabee-php`](https://github.com/kodbeedev/jomabee-php) with a config file, a `Jomabee` facade, and webhook signature middleware.

Install
-------

[](#install)

```
composer require kodbee/jomabee-laravel
php artisan vendor:publish --tag=jomabee-config
```

Add to `.env`:

```
JOMABEE_BASE_URL=https://pay.kodbee.com
JOMABEE_API_KEY=your_api_key
JOMABEE_SECRET_KEY=your_secret_key
JOMABEE_WEBHOOK_SECRET=your_webhook_secret
```

The service provider and `Jomabee` facade are auto-discovered.

Usage
-----

[](#usage)

```
use Kodbee\JomabeeLaravel\Facades\Jomabee;

$payment = Jomabee::createPayment([
    'amount' => 500,
    'product_name' => 'Premium Plan',
    'customer_email' => 'karim@example.com',
    'redirect_url' => route('checkout.thanks'),
    'callback_url' => route('webhooks.jomabee'),
]);

return redirect($payment['payment_url']);
```

```
Jomabee::paymentStatus('JOMB-XXXXXX');
Jomabee::verifyPayment('JOMB-XXXXXX', 'TRXID123', 'bkash');
Jomabee::transactions(['status' => 'verified']);
Jomabee::balance();
```

Webhooks
--------

[](#webhooks)

Protect your webhook route with the `jomabee.webhook` middleware — it rejects requests with a missing or invalid `X-Jomabee-Signature`.

```
use Illuminate\Support\Facades\Route;

Route::post('/webhooks/jomabee', function (\Illuminate\Http\Request $request) {
    $event = $request->json()->all(); // signature already verified
    // handle $event['event'] === 'payment.verified'
    return response()->noContent();
})->middleware('jomabee.webhook')->name('webhooks.jomabee');
```

> Exclude the webhook route from CSRF protection (`VerifyCsrfToken::$except`).

License
-------

[](#license)

MIT © [Kodbee](https://kodbee.com)

###  Health Score

38

—

LowBetter than 83% of packages

Maintenance100

Actively maintained with recent releases

Popularity0

Limited adoption so far

Community2

Small or concentrated contributor base

Maturity42

Maturing project, gaining track record

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

Unknown

Total

1

Last Release

0d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/193194609?v=4)[Jahidul Islam](/maintainers/kodbeedev)[@kodbeedev](https://github.com/kodbeedev)

---

Tags

laravelsdkpaymentbkashnagadbangladeshjomabeekodbee

### Embed Badge

![Health badge](/badges/kodbee-jomabee-laravel/health.svg)

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

###  Alternatives

[sebdesign/laravel-viva-payments

A Laravel package for integrating the Viva Payments gateway

4849.3k](/packages/sebdesign-laravel-viva-payments)

PHPackages © 2026

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