Skip to content

Simple tool for Laravel Nova to show your transactions from Mollie

Notifications You must be signed in to change notification settings

Taronyuu/nova-mollie-tool

Repository files navigation

Laravel Nova Mollie Tool

Simple package to get transactions from Mollie in your Nova dashboard.

Nova Mollie Transactions

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