PHPackages                             prevailexcel/laravel-fincra - 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. prevailexcel/laravel-fincra

ActiveLibrary[Payment Processing](/categories/payments)

prevailexcel/laravel-fincra
===========================

A Laravel Package for working with Fincra API seamlessly

v1.0.0(8mo ago)00MITPHPPHP ^7.4|^8.0

Since Nov 4Pushed 8mo agoCompare

[ Source](https://github.com/PrevailExcel/laravel-fincra)[ Packagist](https://packagist.org/packages/prevailexcel/laravel-fincra)[ Docs](https://github.com/prevailexcel/laravel-fincra)[ RSS](/packages/prevailexcel-laravel-fincra/feed)WikiDiscussions master Synced today

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

Laravel Fincra
==============

[](#laravel-fincra)

[![Latest Version on Packagist](https://camo.githubusercontent.com/a83e2bf9e408b6305b09d66ec68fa5373f165e0b71082171e49405c323ac3277/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7072657661696c657863656c2f6c61726176656c2d66696e6372612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/prevailexcel/laravel-fincra)[![Total Downloads](https://camo.githubusercontent.com/1c59bbf823f8ea04ccad124ae95ab8c5d810190af83150e28fbe4041fdefebb0/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7072657661696c657863656c2f6c61726176656c2d66696e6372612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/prevailexcel/laravel-fincra)

A Laravel Package for working with Fincra Payments seamlessly.

Fincra offers a contemporary financial infrastructure designed for businesses and developers, enabling them to facilitate local and international payouts, gather payments from customers, and create virtual accounts.

This package allows you to:

- Accept payments via Checkout (Pop widget &amp; Redirect)
- Create and manage virtual accounts
- Process local and international payouts
- Manage beneficiaries
- Verify identities (BVN, Account Numbers)
- Handle webhooks with verification
- And much more!

[![Fincra Checkout](./demo.png)](./demo.png)

Requirements
------------

[](#requirements)

[PHP](https://php.net) 7.4+ or [PHP](https://php.net) 8.0+, and [Composer](https://getcomposer.org) are required.

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

[](#installation)

To get the latest version of Laravel Fincra, simply require it:

```
composer require prevailexcel/laravel-fincra
```

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

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

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

### Service Provider &amp; Facade (Laravel &lt; 5.5)

[](#service-provider--facade-laravel--55)

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

```
'providers' => [
    ...
    PrevailExcel\Fincra\FincraServiceProvider::class,
    ...
]
```

Also, register the Facade:

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

> If you use **Laravel &gt;= 5.5** you can skip this step and go to [**configuration**](#configuration)

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

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="PrevailExcel\Fincra\FincraServiceProvider"
```

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

```
