Simple package to get transactions from Mollie in your Nova dashboard.
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,
]
],