monkeypod/blueprint-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.6.0) of this package.

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

Installs: 564

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 5

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 Blueprint Module

This module provides budgeting functionality for MonkeyPod open-source, non-profit accounting and business management software.

Installation

  • Include the module:
composer require monkeypod/blueprint-module
  • Publish the config:
php artisan module:publish-config Blueprint
  • Compile assets:
npm install
npm run [dev|prod]
  • Seed the database:
php artisan module:seed Blueprint
  • Add the navigation to your main config/monkeypod-navigation.php file:
return [
    Menus\Organization::class,
    Menus\Transactions::class,
    Menus\Reports::class,
    MonkeyPod\Blueprint\Http\Navigation\Menus\Budgets::class, // <-- HERE, PERHAPS?   
];