PHPackages                             exceptio/laravel-sonali-payment - 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. exceptio/laravel-sonali-payment

ActiveLibrary[Payment Processing](/categories/payments)

exceptio/laravel-sonali-payment
===============================

Sonali Payment Package For Laravel Framework

v1.0.21(10mo ago)1228MITPHPPHP &gt;=7.4

Since Sep 14Pushed 10mo ago1 watchersCompare

[ Source](https://github.com/azcpavel/laravel-sonali-payment)[ Packagist](https://packagist.org/packages/exceptio/laravel-sonali-payment)[ RSS](/packages/exceptio-laravel-sonali-payment/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (1)Versions (22)Used By (0)

Sonali Payment For Laravel
==========================

[](#sonali-payment-for-laravel)

A simple package for handling Sonali Bank Payment in Laravel.

- [Installation](#installation)
    - [Composer](#composer)
    - [Service Provider](#service-provider)
    - [Config File](#config-file)
- [Opening an Issue](#opening-an-issue)
- [License](#license)

---

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

[](#installation)

This package is very easy to set up. There are only couple of steps.

### Composer

[](#composer)

Pull this package in through Composer

```
composer require exceptio/laravel-sonali-payment

```

### Service Provider

[](#service-provider)

- Laravel 5.5 and up Uses package auto discovery feature, no need to edit the `config/app.php` file.
- Laravel 5.4 and below Add the package to your application service providers in `config/app.php` file.

```
'providers' => [

    ...

    /**
     * Third Party Service Providers...
     */
    Exceptio\SonaliPayment\SonaliPaymentServiceProvider::class,

],
```

### Config File

[](#config-file)

Publish the package config file to your application. Run these commands inside your terminal.

```
php artisan vendor:publish --provider="Exceptio\SonaliPayment\SonaliPaymentServiceProvider" --tag="config"

```

You can change token and other settings in config or \[.env\]. Have a look at config file for more information.

### And that's it!

[](#and-thats-it)

---

Usage
-----

[](#usage)

### Checkout And Validation Process

[](#checkout-and-validation-process)

```
