monkeypod/gutenberg-module

This package is abandoned and no longer maintained. No replacement package was suggested.
There is no license information available for the latest version (v2.2.0) of this package.

Printing support for the MonkeyPod non-profit accounting and business management platform

Installs: 523

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 6

Type:laravel-module


README

As always, if you don't have serious programming and systems administation experience, it is recommended to use the plug-n-play, hosted version of MonkeyPod instead.

MonkeyPod Gutenberg Module

This module provides printing (e.g., checks) functionality for MonkeyPod open-source, non-profit accounting and business management software.

Installation

  • Include the module:
composer require monkeypod/gutenberg-module
  • Publish the config:
php artisan module:publish-config Gutenberg
  • Compile assets:
cd MonkeyPod/Gutenberg
npm install
npm run [dev|prod]
  • Add navigation links:

By default, printing links are added to the main "Transactions" menu. If you want a dedicated menu for printing instead, you can add the navigation menu class to your main config/monkeypod-navigation.php file:

return [
    Menus\Organization::class,
    Menus\Transactions::class,
    Menus\Reports::class,
    MonkeyPod\Gutenberg\Http\Navigation\Menus\Printing::class, // <-- HERE, PERHAPS?   
];