PHPackages                             novatree/wallet - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. novatree/wallet

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

novatree/wallet
===============

Simple Wallet

1.7(9y ago)272.5kMITPHP &gt;=5.5.9

Since Mar 9Compare

[ Source](https://github.com/novatree/laravel-wallet)[ Packagist](https://packagist.org/packages/novatree/wallet)[ RSS](/packages/novatree-wallet/feed)WikiDiscussions Synced today

READMEChangelog (2)Dependencies (2)Versions (8)Used By (0)

Laravel Wallet
--------------

[](#laravel-wallet)

A simple wallet feature implementation for Laravel.

Installation
------------

[](#installation)

Install the package through [Composer](http://getcomposer.org/).

Run the Composer require command from the Terminal:

```
composer require novatree/wallet

```

Now all you have to do is to add the service provider of the package and alias the package. To do this open your `config/app.php` file.

Add a new line to the `providers` array:

```
Novatree\Wallet\WalletServiceProvider::class

```

And optionally add a new line to the `aliases` array:

```
'Wallet' => Novatree\Wallet\facades\WalletApiFacades::class

```

Now you're ready to start using the wallet feature in your application.

Configuration
-------------

[](#configuration)

Publish the configuration for this package to further create tables. Run the following command:

```
php artisan vendor:publish
php artisan migrate

```

Usage
-----

[](#usage)

To create a new account type for wallet, use createAccountType() method

```
Wallet::createAccountType($accountType, $machineName, $isActive);
```

To create a transaction type for wallet, use createTransactionType() method

```
Wallet::createTransactionType($transactionType, $status);
```

To do a transaction in wallet, use createTransaction() method

```
Wallet::createTransaction($account_type_id, $transaction_type_id, $amount, $transaction_date, $user_id, $transaction_status);
```

To get user's transaction for wallet, use getUserTransaction() method

```
Wallet::getUserTransaction($user_id,$transaction_id,$transaction_date,$account_type,$transaction_type,$transaction_status);
```

To get type of all account, use getAccountTypes() method. Here $status is a optional parameter. To get all active account $status parameter should be 1, and 0 in case of inactive.

```
Wallet::getAccountTypes($status);
```

To get type of all transactions, use getTransactionTypes() method. Here $status is a optional parameter. To get all active transactions $status parameter should be 1, and 0 in case of inactive.

```
Wallet::getTransactionTypes($status);
```

License
-------

[](#license)

The Laravel Wallet is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT).

###  Health Score

32

—

LowBetter than 69% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity25

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity63

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

7

Last Release

3398d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/7c2b75309a4de723e4aeaf920e33f6f47232cf3d942fd3dcbf0e4ce16ceb2807?d=identicon)[monojithalder](/maintainers/monojithalder)

---

Top Contributors

[![monojithalder](https://avatars.githubusercontent.com/u/8760579?v=4)](https://github.com/monojithalder "monojithalder (3 commits)")

---

Tags

laravelwallet

### Embed Badge

![Health badge](/badges/novatree-wallet/health.svg)

```
[![Health](https://phpackages.com/badges/novatree-wallet/health.svg)](https://phpackages.com/packages/novatree-wallet)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.1M337](/packages/psalm-plugin-laravel)[laravel/ai

The official AI SDK for Laravel.

1.0k2.1M163](/packages/laravel-ai)[moonshine/moonshine

Laravel administration panel

1.3k239.9k76](/packages/moonshine-moonshine)[linkxtr/laravel-qrcode

A clean, modern, and easy-to-use QR code generator for Laravel

3614.9k](/packages/linkxtr-laravel-qrcode)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.2k](/packages/tomshaw-electricgrid)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
