taronyuu / nova-mollie-tool
Simple tool for Laravel Nova to show your transactions from Mollie
Package info
github.com/Taronyuu/nova-mollie-tool
Language:Vue
pkg:composer/taronyuu/nova-mollie-tool
0.0.32
2018-08-26 14:48 UTC
Requires
- php: >=7.1.0
- mollie/mollie-api-php: ^2.0
Requires (Dev)
None
Suggests
None
Provides
None
Conflicts
None
Replaces
None
README
Simple package to get transactions from Mollie in your Nova dashboard.
Installation
Start with installing the package
composer require taronyuu/nova-mollie-tool
Then register the tool inside the NovaServiceProvider.php
public function tools() { return [new NovaMollieTool]; }
Add these fields to config/services.php to make sure Mollie will work.
'nova_mollie_tool' => [ 'title' => 'Mollie ', 'icon' => null, 'api_key' => env('MOLLIE_KEY'), 'request' => [ 'limit' => 20, ] ],
