taronyuu/nova-mollie-tool

Simple tool for Laravel Nova to show your transactions from Mollie

Installs: 4 574

Dependents: 0

Suggesters: 0

Security: 0

Stars: 10

Watchers: 4

Forks: 0

Open Issues: 1

Language:Vue

0.0.32 2018-08-26 14:48 UTC

This package is auto-updated.

Last update: 2024-04-29 03:51:02 UTC


README

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