PHPackages                             angwa/glade-bank-transfer - 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. angwa/glade-bank-transfer

ActiveLibrary[Payment Processing](/categories/payments)

angwa/glade-bank-transfer
=========================

This will enable customers make payment with bank transfer

25PHP

Since Feb 23Pushed 5y ago1 watchersCompare

[ Source](https://github.com/Angwa/glade-bank-transfer)[ Packagist](https://packagist.org/packages/angwa/glade-bank-transfer)[ RSS](/packages/angwa-glade-bank-transfer/feed)WikiDiscussions master Synced 2d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Glade Pay - Bank Transfer Option in Laravel
===========================================

[](#glade-pay---bank-transfer-option-in-laravel)

This package will enable customers make payment with bank transfer using Glade Api. This package uses [Guzzle](https://docs.guzzlephp.org/). Guzzle is a PHP HTTP client that makes it easy to send HTTP requests and trivial to integrate with web services.

Installation and usage
----------------------

[](#installation-and-usage)

This package requires PHP 7.2 and Laravel 7.\* or higher.

You can install the package via composer:

```
composer require angwa/glade-bank-transfer
```

Next step is to register our service providers. Simply open `config/app.php` and locate providers section and add `GladeApi\GladeBankTransfer\GladeServiceProvider::class,` Like below

```
'providers' => [
    ...
    GladeApi\GladeBankTransfer\GladeServiceProvider::class,
    ...
]

```

Go down still inside `config/app.php` and place `'GladeBankTransfer' => GladeApi\GladeBankTransfer\Facades\GladeBankTransfer::class,` in the `aliases` section like below

```
'aliases' => [
    ...
    'GladeBankTransfer' => GladeApi\GladeBankTransfer\Facades\GladeBankTransfer::class,
    ...
]

```

The ablove code will enable use `use GladeBankTransfer` in our controllers

### Load Configuration file

[](#load-configuration-file)

Our configuration file is named glade.php and will be created when you run the bash code below

```
php artisan vendor:publish --provider="GladeApi\GladeBankTransfer\GladeServiceProvider"
```

You can also copy the code below, create a file named glade.php in the config folder and paste

```
