A package for verify bkash marchant payment recived.
Laravel >=5.1
PHP >= 5.5.9
- Run
composer require anwar/abkash
- Run for publish config file
php artisan vendor:publish --provider Anwar\Abkash\AbkashServiceProvider --force true
- 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
<?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
],
];
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'));
}
}