Download the PHP package waxwink/laracount without Composer
On this page you can find all versions of the php package waxwink/laracount. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download waxwink/laracount
More information about waxwink/laracount
Files in waxwink/laracount
Informations about the package laracount
Laravel Accounting System
This package can manage accounting of a Laravel application with an easy approach and great functionalities. These functionalities are
- Deposit and withdrawing from wallet
- Calculating the total existing money received from users (Bank account balance)
- Calculating the total revenue and expenses of the system
- Tax payment can also be handled, and the total amount of paid taxes can be calculated
- Race condition can be handled by lock feature
- Important reports can be produced
Installation
Installation is pretty straightforward. require the package :
And then install it :
Now we're ready to go.
Basic usage
The API is pretty user-friendly as the main service that you are dealing with most of the time is the AccountingService
.
You make an object from the service using container and start using its methods:
Deposit
Users may deposit to their accounts:
Withdraw
Users may withdraw from their accounts:
Pay
Users can pay for a service or product or whatever:
Laracount does not care about the invoice or the reason of payment, it just takes care of the accounting.
But a ref_id
can be passed in order to track the transactions and use them for reporting purposes.
This key can be the invoice number or anything.
PayTo
The system can also pay to the users. Like the monthly profit or for the service the users have provided like driving, repairing ,...
Refund
Users can refund money
Laracount does not care about the reason of refund, the amount of it or whether the money has been paid before or not.
Like previous methods the transaction can be tracked by a ref_id
key.
Balance
Accounts balance can be retrieved:
Other Balance APIs
Bank, revenue and expense balances can be retrieved by:
Transactions list
Transactions List of an account can be fetched
You can paginate the transactions this way:
Columns can also be defined:
Items can be sorted like this:
Date filtering is also available:
Cool, Right?
A little thing should be taken care of before using the above methods. The users should provide an account_id
and that ID must be grater than 10 because there the first tens are reserved for the non-user accounts like bank, revenue, expense, ...
So you must implement the HasAccount
interface and use the HasAccountTrait
. So your user model becomes something like this :
Another thing you should know is that the customer should be registered in the accounts
table.
We have a service for that which should be used only once per user (for example when he is registering):
When you put this code in your registering controller it would become something like this:
That's all. Now you are ready to use the above methods.
All versions of laracount with dependencies
waxwink/accounting Version 0.1.1
illuminate/database Version ^8.67
illuminate/container Version ^8.67
illuminate/cache Version ^8.67
illuminate/contracts Version ^8.67