anwar/abkash
Composer 安装命令:
composer require anwar/abkash
包简介
Laravel Bkash payment gateway for Bangladesh bKash a mobile payment service.
关键字:
README 文档
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')); } }
统计信息
- 总下载量: 101
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-02-07