Journal is a package that serves as a base for accounting Laravel apps powered by Jetstream/inertia (CRM, Budgeting apps, stores, etc). Journal provides the implementation for account ledger, double entry transactions, payees, account reconciliations, and more.
Actions, providers, and policies are exported to give more flexibility.
Once you have a project with jetstream + inertia scaffolding
Jetstream should only be installed into new Laravel applications. Attempting to install Jetstream into an existing Laravel application will result in unexpected behavior and issues.
php artisan jetstream:install inertia
php artisan jetstream:install inertia --teams
please read jetstream documentation for that steps if you're not familiar
composer require insane/journal
journal:install
Journal don't publish controllers or routes. Instead, Journal lets you customize its behavior through actions.
During the installation process actions are published to your application's app/Domains/Journal/Actions
directory
Action classes typically perform a single action and correspond to a single Journal feature, such as creating an account or deleting a category. You are free to customize these classes if you would like to tweak the backend behavior of Journal.
- Account Ledger
- Journal double entry
- Products
- Invoicing
- Invoice payments registration (offline database registration not banking)
- Reports
Currently, Journal powers some of my apps:
- Loger(atmosphere)
- IC Loan(prestapp)
- Academia (coming soon)
- Neatlancer (coming soon)
Please see CONTRIBUTING for details.
If you discover any security-related issues, please email [email protected] instead of using the issue tracker.
The MIT License (MIT). Please see License File for more information.