A Faspay payment gateway tool for Laravel Nova.
cendekia/nova-faspay-tools is a Laravel package for a faspay payment gateway tool for laravel nova..
It currently has 1 GitHub stars and 149 downloads on Packagist (latest version v0.0.3).
Install it with composer require cendekia/nova-faspay-tools.
Discover more Laravel packages by cendekia
or browse all Laravel packages to compare alternatives.
Last updated

You can install the package in to a Laravel app that uses Nova via composer:
composer require cendekia/nova-faspay-tools
You need to add some credentials from Faspay into .env file, like so:
FASPAY_RECURRING_MERCHANT_ID=xxxx
FASPAY_RECURRING_MERCHANT_NAME=xxxxx
FASPAY_RECURRING_CLIENT_ID=xxxxx
FASPAY_RECURRING_PASSWORD=xxxxx
FASPAY_RECURRING_CHECK_URL=https://xxxxxx
FASPAY_RECURRING_MEMBER_DATA_URL=https://xxxxxx
Next up, you must register the tool with Nova. This is typically done in the tools method of the NovaServiceProvider.
// in app/Providers/NovaServiceProvider.php
// ...
public function tools()
{
return [
// ...
new \Cendekia\FaspayTools\FaspayTools,
];
}
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Buy me a cup of ☕ americano on the rocks. Patreon
The MIT License (MIT). Please see License File for more information.