cyvelnet/billplz
最新稳定版本:v0.1.7
Composer 安装命令:
composer require cyvelnet/billplz
包简介
A Malaysian simple billing and payment solution with Billplz
README 文档
README
A Malaysia simple billing and payment solution from Billplz for laravel 5
[2016/09/21] Please consider this repo as deprecated, in favors of https://github.com/Cyvelnet/laravel-billplz (support v3 api & sandbox), visit https://github.com/Cyvelnet/laravel-billplz/wiki/Laravel5-billplz-compatibility for potential change to adapts to v3 api
Require this package with composer using the following command:
composer require cyvelnet/billplz
After updating composer, add the ServiceProvider to the providers array in config/app.php
'Cyvelnet\Billplz\BillplzServiceProvider',
You can also publish the config file to change implementations to suits your configuration.
php artisan vendor:publish
To create a new bill
Billplz::issue(function ($bill) {
$bill->amount(1)
->to('customer name', 'customer@customer.com', 'customer mobile number');
});
To delete an existing bill
Billplz::delete($billId);
To retrieve an existing bill info.
Billplz::get($billId);
To ensure an request is success without error, you verify with
$response = Billplz::get($billId);
if($response->isSuccess())
{
$apiResponse = $response->getResponse();
}else
{
$errorResponse = $response->getFailedReason();
}
统计信息
- 总下载量: 112
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 12
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2015-04-28