taronyuu/nova-mollie-tool

Simple tool for Laravel Nova to show your transactions from Mollie

Maintainers

Package info

github.com/Taronyuu/nova-mollie-tool

Language:Vue

pkg:composer/taronyuu/nova-mollie-tool

Statistics

Installs: 4 610

Dependents: 0

Suggesters: 0

Stars: 10

Open Issues: 1

0.0.32 2018-08-26 14:48 UTC

This package is auto-updated.

Last update: 2026-03-01 00:55:47 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,
    ]
],