PHPackages                             mujhtech/laravel-lazerpay - 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. mujhtech/laravel-lazerpay

ActiveLibrary[Payment Processing](/categories/payments)

mujhtech/laravel-lazerpay
=========================

Laravel package for lazerpay api

1.0.1(3y ago)17MITPHPPHP ^7.2|^8.0

Since Jun 5Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Mujhtech/laravel-lazerpay)[ Packagist](https://packagist.org/packages/mujhtech/laravel-lazerpay)[ RSS](/packages/mujhtech-laravel-lazerpay/feed)WikiDiscussions master Synced 1mo ago

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

mujhtech/laravel-lazerpay
=========================

[](#mujhtechlaravel-lazerpay)

> A Laravel Package for lazerpay api

 [![Latest Stable Version](https://camo.githubusercontent.com/017a9a3e275228292f4ba977cfe20c184c417120266587d96bed41b89bc5e0da/687474703a2f2f706f7365722e707567782e6f72672f6d756a68746563682f6c61726176656c2d6c617a65727061792f76)](https://packagist.org/packages/mujhtech/laravel-lazerpay) [![Latest Unstable Version](https://camo.githubusercontent.com/48b58b93df4f77c0681d96780892b8f3c8dcdc1303d9ebdb901a80190d12deb5/687474703a2f2f706f7365722e707567782e6f72672f6d756a68746563682f6c61726176656c2d6c617a65727061792f762f756e737461626c65)](https://packagist.org/packages/mujhtech/laravel-lazerpay) [![Build Status](https://camo.githubusercontent.com/405ca31fa083a0a3b35e341cb8e2b70f3dc8032c10e4d982361ed54f77d9514c/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f4d756a68746563682f6c61726176656c2d6c617a65727061792f6261646765732f6275696c642e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/Mujhtech/laravel-lazerpay/build-status/master) [![Scrutinizer Code Quality](https://camo.githubusercontent.com/de64796be0390e83fa28a277dcc02abb4932987431027197cd9b714494b421a3/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f4d756a68746563682f6c61726176656c2d6c617a65727061792f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/Mujhtech/laravel-lazerpay/?branch=master) [![Code Coverage](https://camo.githubusercontent.com/26a21eb6951ab3bda6039e1c7c981811a3d9aec6a63852bf073476f086e25598/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f4d756a68746563682f6c61726176656c2d6c617a65727061792f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/Mujhtech/laravel-lazerpay/?branch=master) [![Total Downloads](https://camo.githubusercontent.com/17e14d7ab709c7ef1899e2b6a1939d0661207b78d42ca6013dba750c4132e7f2/687474703a2f2f706f7365722e707567782e6f72672f6d756a68746563682f6c61726176656c2d6c617a65727061792f646f776e6c6f616473)](https://packagist.org/packages/mujhtech/laravel-lazerpay) [![License](https://camo.githubusercontent.com/ce3ab8d342f866d0fa5b48b90db587d6d11135865058fa39ac1431c5c72034e5/687474703a2f2f706f7365722e707567782e6f72672f6d756a68746563682f6c61726176656c2d6c617a65727061792f6c6963656e7365)](https://packagist.org/packages/mujhtech/laravel-lazerpay)

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

[](#installation)

To get the latest version of Lazerpay, simply require it

```
composer require mujhtech/laravel-lazerpay
```

Or add the following line to the require block of your `composer.json` file.

```
"mujhtech/laravel-lazerpay": "1.0.*"

```

Once Laravel Sendchamp is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.

```
'providers' => [
 ...
 Mujhtech\Lazerpay\LazerpayServiceProvider::class,
 ...
]
```

> If you use **Laravel &gt;= 5.5** you can skip this step and go to [**`configuration`**](https://github.com/mujhtech/laravel-lazerpay#configuration)

- `Mujhtech\Lazerpay\LazerpayServiceProvider::class`

Also, register the Facade like so:

```
'aliases' => [
 ...
 'Lazerpay' => Mujhtech\Lazerpay\Facades\Lazerpay::class,
 ...
]
```

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

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="Mujhtech\Lazerpay\LazerpayServiceProvider"
```

A configuration-file named `lazerpay.php` with some sensible defaults will be placed in your `config` directory:

```
