PHPackages                             blognevis/lnowpayments - 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. blognevis/lnowpayments

ActiveLibrary[Payment Processing](/categories/payments)

blognevis/lnowpayments
======================

A Laravel Package for NOWPayments

0.0.1(1y ago)0331MITPHP

Since Aug 19Pushed 1y ago1 watchersCompare

[ Source](https://github.com/arsaey/nowpayments)[ Packagist](https://packagist.org/packages/blognevis/lnowpayments)[ RSS](/packages/blognevis-lnowpayments/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependencies (1)Versions (2)Used By (1)

laravel-nowpayments
===================

[](#laravel-nowpayments)

[![Latest Stable Version](https://camo.githubusercontent.com/8b6fd6d5f75e6d104901d367b54b6c2248c4af54a8714e389b931484e59af3f5/68747470733a2f2f706f7365722e707567782e6f72672f7072657661696c657863656c2f6c61726176656c2d6e6f777061796d656e74732f762f737461626c652e737667)](https://packagist.org/packages/prevailexcel/laravel-nowpayments)[![License](https://camo.githubusercontent.com/6497f1ea4ed3ae86d0e58a839345746c3a3a282959c4ecebbbc122bf458d1050/68747470733a2f2f706f7365722e707567782e6f72672f7072657661696c657863656c2f6c61726176656c2d6e6f777061796d656e74732f6c6963656e73652e737667)](LICENSE.md)

> A Laravel Package for working with NOWPayments seamlessly

> This package comes now with a default dashboard that show the list of all payments and also shows a log of endpoints that have been accessed from your application, fluent methods to handle payments easily and removes the bulk of the heavy work from you.

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

[](#installation)

[PHP](https://php.net) 5.4+ or [HHVM](http://hhvm.com) 3.3+, and [Composer](https://getcomposer.org) are required.

To get the latest version of Laravel NOWPayments, simply require it

```
composer require prevailexcel/laravel-nowpayments
```

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

```
"prevailexcel/laravel-nowpayments": "1.0.*"

```

You'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.

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

```
'providers' => [
    ...
    PrevailExcel\Nowpayments\NowpaymentsServiceProvider::class,
    ...
]
```

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

- `PrevailExcel\Nowpayments\NowpaymentsServiceProvider::class`

Also, register the Facade like so:

```
'aliases' => [
    ...
    'Nowpayments' => PrevailExcel\Nowpayments\Facades\Nowpayments::class,
    ...
]
```

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

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="PrevailExcel\Nowpayments\NowpaymentsServiceProvider"
```

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

```
