taronyuu / nova-mollie-tool
Simple tool for Laravel Nova to show your transactions from Mollie
Installs: 4 593
Dependents: 0
Suggesters: 0
Security: 0
Stars: 10
Watchers: 4
Forks: 0
Open Issues: 1
Language:Vue
Requires
- php: >=7.1.0
- mollie/mollie-api-php: ^2.0
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, ] ],