LaravelPackages.net
Acme Inc.
Toggle sidebar
cendekia/nova-faspay-tools

A Faspay payment gateway tool for Laravel Nova.

149
1
v0.0.3
About cendekia/nova-faspay-tools

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

A tool to provide an UI access of Faspay web services

Latest Version on Packagist Build Status StyleCI Total Downloads

RecurringCheck UpdateRecurringMember

Installation

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,
    ];
}

Todo :

  • [x] Recurring member check
  • [x] Update recurring member data
  • [ ] Setting with local data

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Support

Buy me a cup of ☕ americano on the rocks. Patreon

License

The MIT License (MIT). Please see License File for more information.

Comments