anwar / abkash
Laravel Bkash payment gateway for Bangladesh bKash a mobile payment service.
v1.02
2019-05-08 05:26 UTC
Requires
- php: ^7.0
README
A package for verify bkash marchant payment recived.
Requirements
Laravel >=5.1
PHP >= 5.5.9
Installation
For Laravel >= 5.5 you need to follow these steps
- Run
composer require anwar/abkash
- Run for publish config file
php artisan vendor:publish --provider Anwar\Abkash\AbkashServiceProvider --force true
For Laravel < 5.5 you need to follow these steps
- Run
composer require anwar/abkash
- Add service provider to config/app.php file.
'providers' => [ ... Anwar\Abkash\AbkashServiceProvider::class, ],
'aliases' => [ ... Anwar\Abkash\Faceds\AbkashFaced::class, ],
- Run for publish config file
php artisan vendor:publish --provider Anwar\Abkash\AbkashServiceProvider --force true
For using
<?php /** * @Author: anwar * @Date: 2018-02-07 11:13:24 * @Last Modified by: anwar * @Last Modified time: 2018-02-07 11:32:48 */ return [ "Abkash" => [ 'username' => '', //username of your marchant account 'password' => '', //password of your marchant account 'mobile' => '', //mobile of your marchant account ], ];
After config
You use like this
<?php namespace App\Http\Controllers; use Abkash; class HomeController extends Controller { /** * Create a new controller instance. * * @return void */ public function __construct() { $this->middleware('auth'); } /** * Show the application dashboard. * * @return \Illuminate\Http\Response */ public function index() { return view('home', compact('Abkash')); } }