Skip to content

Latest commit

 

History

History
31 lines (24 loc) · 705 Bytes

README.md

File metadata and controls

31 lines (24 loc) · 705 Bytes

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