For complete API usage, some endpoints need User Secret Key
. For staging/testing purposes, please register an account at ToyyibPay Staging Portal. Here you can create dummy bills and make test payments via Bank Simulators.
Notification! We will not accept responsibility for loss of money due to improper use of the toyyibPay API and this package.
To install the package within your laravel project use the following composer command:
composer require tarsoft/toyyibpay
php artisan vendor:publish --provider="Tarsoft\Toyyibpay\ToyyibpayServiceProvider"
TOYYIBPAY_USER_SECRET_KEY=ADD-TOYYIBPAY_USER_SECRET_KEY
TOYYIBPAY_REDIRECT_URI=ADD-TOYYIBPAY_REDIRECT_URI
TOYYIBPAY_SANDBOX=ADD-TOYYIBPAY_SANDBOX-MODE
If you're using Laravel 5.5+ you don't need to manually add the service provider or facade. This will be Auto-Discovered. For all versions of Laravel below 5.5, you must manually add the ServiceProvider & Facade to the appropriate arrays within your Laravel project config/app.php
Tarsoft\Toyyibpay\ToyyibpayServiceProvider::class,
'Toyyibpay' => Tarsoft\Toyyibpay\ToyyibpayFacade::class,
use Toyyibpay;
class MyController extends Controller
{
// Controller functions here...
}
Toyyibpay::getBanks();
Toyyibpay::getBanksFPX();
Toyyibpay::getPackages();
Toyyibpay::createCategory($name, $description);
Toyyibpay::getCategory($category_code);
Toyyibpay::createBill($category_code, [
'billName' => $request->bill_name,
'billDescription' => $request->bill_description,
...
]);
Let's say you have an array of data that you want to convert into an object before passing it to Toyyibpay::createBill($category_code, $array)
. You can use the stdClass
class, which is a built-in class in PHP for creating objects on-the-fly. Here's how you can do it:
Toyyibpay::createBill($category_code, (object)$array)
Toyyibpay::billPaymentLink($bill_code);
Before opening an issue there are a couple of considerations:
- You are all cute and geek!
- Check that the issue is not specific to your development environment setup.
- Provide duplication steps.
- If you have a questions send me an email to tarmizi@mizi.my
- Need a coach or assistance, I can do my best on Telegram: https://t.me/tarmizisanusi
- Please be considerate that this is an open source project that I provide to the community for FREE.
Laravel Toyyibpay(the package) is licensed under the MIT license. Enjoy!