Package Data | |
---|---|
Maintainer Username: | cyvelnet |
Maintainer Contact: | cyvelnet@gmail.com (Cyvelnet) |
Package Create Date: | 2016-09-19 |
Package Last Update: | 2017-07-25 |
Home Page: | |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-24 03:01:29 |
Package Statistics | |
---|---|
Total Downloads: | 699 |
Monthly Downloads: | 2 |
Daily Downloads: | 0 |
Total Stars: | 7 |
Total Watchers: | 4 |
Total Forks: | 6 |
Total Open Issues: | 3 |
Laravel-billplz is a simple service providers and generator to connect your laravel powered app to Billplz api v3.
Before you getting started, kindly visit https://www.billplz.com/enterprise/signup to register an acount and read https://www.billplz.com/api#v3 for better understanding.
Require this package with composer using the following command:
composer require cyvelnet/laravel-billplz
After updating and installed, add the service provider to the providers
array in config/app.php
file
Cyvelnet\LaravelBillplz\LaravelBillplzServiceProvider::class
And finally add the facade to the aliases
array section in config/app.php
Cyvelnet\LaravelBillplz\Facades\Billplz::class
\Billplz::issue(function (Cyvelnet\LaravelBillplz\Messages\BillMessage $bill)
{
// bill with a amount RM50
$bill->to('name', 'email', 'mobile')
->amount(50) // will multiply with 100 automatically, so a RM500 bill, you just pass 500 instead of 50000
->callbackUrl('http://foorbar.com/foo/bar/webhook/')
->description('description');
});
An UnacceptableRequestException will be throw for any call with any missing parameter.
Alternatively, you may generate reusable bill with artisan command php artisan make:bill MonthlyManagementBill
\Billplz::send(new MonthlyManagementBill())
->to('foobar')
->viaEmail('foo@bar.com') // you may use viaSms('mobile no') or viaEmailAndSms('email', 'mobile no')
$request = \Billplz::delete('bill_id');
if($request->isSuccess())
{
// perform after deletion operation
}
$bill = \Billplz::get('bill_id')->toArray();
A BillNotFoundException will be throw for any missing bill.
$request = \Billplz::collection('collection title');
if($request->isSuccess())
{
$collection = $request->toArray() // you can call getRawBillplzResponse(false) to get response in POPO
}
to customize your collection more, pass in an anonymous function as the second parameter
$request = \Billplz::collection('collection title', function (\Cyvelnet\LaravelBillplz\Messages\CollectionMessage $collection) {
// split a payment by RM50
$collection->logo(storage_path('/billplz/my-logo.jpg'))
->splitPaymentByFixed('foo@bar.com', 50) // will convert into 5000 cents automatically
});
// create a open collection with a fixed amount RM500
$request = \Billplz::openCollection('collection title', 'collection description', 500);
if($request->isSuccess())
{
$collection = $request->toArray() // you can call getRawBillplzResponse(false) to get response in POPO
}
// create a open collection with a fixed amount RM500
$request = \Billplz::openCollection('collection title', 'collection description', function (\Cyvelnet\LaravelBillplz\Messages\OpenCollectionMessage $collection) {
$collection->anyAmountAndQty();
// ->splitPaymentByVariable('foo@bar.com', 50); // split payment by 50%
// ->tax(6) // 6% tax
// ->photo(storage_path('/billplz/my-photo.jpg'))
// ->reference1('your references')
});
if($request->isSuccess())
{
$collection = $request->toArray() // you can call getRawBillplzResponse(false) to get response in POPO
}
Billplz api v3, enabled sandbox functionality where developers are allowed to isolates api request to a sandbox and trigger payment completion on demand.
By default sandbox is disabled, to enable sandbox mode add a BILLPLZ_ENABLE_SANDBOX = true
entry to .env and ensure you have proper configured api_key and collection_id for both production and sandbox.