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.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

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

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

PHP Build Version
Package Version
Requires php Version ^8.0
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
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package waxwink/laracount contains the following files

Loading the files please wait ....