PHPackages                             khaled-dev/billplz-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. khaled-dev/billplz-laravel

ActiveLibrary[Payment Processing](/categories/payments)

khaled-dev/billplz-laravel
==========================

Laravel adapter for Billplz

4.1.2(1y ago)02MITPHPPHP ^8.1

Since Mar 25Pushed 1y agoCompare

[ Source](https://github.com/khaled-dev/billplz-laravel)[ Packagist](https://packagist.org/packages/khaled-dev/billplz-laravel)[ GitHub Sponsors](https://github.com/crynobone)[ Fund](https://liberapay.com/crynobone)[ RSS](/packages/khaled-dev-billplz-laravel/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (3)Dependencies (9)Versions (4)Used By (0)

Billplz adapter for Laravel
===========================

[](#billplz-adapter-for-laravel)

[![tests](https://github.com/jomweb/billplz-laravel/workflows/tests/badge.svg?branch=master)](https://github.com/jomweb/billplz-laravel/actions?query=workflow%3Atests+branch%3Amaster)[![Latest Stable Version](https://camo.githubusercontent.com/2c9b5aaab1f74471758240468724a846743f27f870d18dbd310425c2adbe630b/68747470733a2f2f706f7365722e707567782e6f72672f6a6f6d7765622f62696c6c706c7a2d6c61726176656c2f76657273696f6e)](https://packagist.org/packages/jomweb/billplz-laravel)[![Total Downloads](https://camo.githubusercontent.com/34a9ce168715a5c38810c84e66397b6d516a9aa929a8db278e848b4e0cf117de/68747470733a2f2f706f7365722e707567782e6f72672f6a6f6d7765622f62696c6c706c7a2d6c61726176656c2f646f776e6c6f616473)](https://packagist.org/packages/jomweb/billplz-laravel)[![Latest Unstable Version](https://camo.githubusercontent.com/8c851c3addabd72a7cfa6d9e2459601a6bb277fdfb4b98be670f6ccb59da5912/68747470733a2f2f706f7365722e707567782e6f72672f6a6f6d7765622f62696c6c706c7a2d6c61726176656c2f762f756e737461626c65)](//packagist.org/packages/jomweb/billplz-laravel)[![License](https://camo.githubusercontent.com/8d6e5f4b25cae274d1c11d0170b7fe8bfa5aec12dc60829ab632c16cafc7f19d/68747470733a2f2f706f7365722e707567782e6f72672f6a6f6d7765622f62696c6c706c7a2d6c61726176656c2f6c6963656e7365)](https://packagist.org/packages/jomweb/billplz-laravel)[![Coverage Status](https://camo.githubusercontent.com/3aa20f39b4136066927ba9e2740851fd63d1ac8794385f0cb04c63d95f44a842/68747470733a2f2f636f766572616c6c732e696f2f7265706f732f6769746875622f6a6f6d7765622f62696c6c706c7a2d6c61726176656c2f62616467652e7376673f6272616e63683d6d6173746572)](https://coveralls.io/github/jomweb/billplz-laravel?branch=master)

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

[](#installation)

To install through composer by using the following command:

```
composer require "jomweb/billplz-laravel"

```

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

[](#configuration)

Next add the service provider in `config/app.php`.

```
'providers' => [

    // ...

    Billplz\Laravel\BillplzServiceProvider::class,

],
```

### Aliases

[](#aliases)

You might want to add `Billplz\Laravel\Billplz` to class aliases in `config/app.php`:

```
'aliases' => [

    // ...

    'Billplz' => Billplz\Laravel\Billplz::class,

],
```

### Billplz Configuration

[](#billplz-configuration)

Next add the configuration in `config/services.php`.

```
