silali/laravel-wallet
最新稳定版本:v1.0.9
Composer 安装命令:
composer require silali/laravel-wallet
包简介
Easy to use virtual wallet for your app
README 文档
README
In a few projects I had to implement a virtual currency. The user would buy packs of credits with Stripe and then use them in the app in exchange of services or goods. This package is a small and simple implementation of this concept with place for customization.
Installation
Install the package with composer:
composer require depsimon/laravel-wallet
Run Migrations
Publish the migrations with this artisan command:
php artisan vendor:publish --provider="Depsimon\Wallet\WalletServiceProvider" --tag=migrations
Configuration
You can publish the config file with this artisan command:
php artisan vendor:publish --provider="Depsimon\Wallet\WalletServiceProvider" --tag=config
This will merge the wallet.php config file where you can specify the Users, Wallets & Transactions classes if you have custom ones.
Usage
Add the HasWallet trait to your User model.
use Depsimon\Wallet\HasWallet; class User extends Model { use HasWallet; ... }
At some point before making transactions, create the user's wallet.
$user->wallet()->create();
Then you can easily make transactions from your user model.
$user = User::find(1); $user->balance; // 0 $user->deposit(100); $user->balance; // 100 $user->withdraw(50); $user->balance; // 50 $user->forceWithdraw(200); $user->balance; // -150
You can easily add meta information to the transactions to suit your needs.
$user = User::find(1); $user->deposit(100, 'deposit', ['stripe_source' => 'ch_BEV2Iih1yzbf4G3HNsfOQ07h', 'description' => 'Deposit of 100 credits from Stripe Payment']); $user->withdraw(10, 'withdraw', ['description' => 'Purchase of Item #1234']);
Security
If you discover any security related issues, please email simon@webartisan.be instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.
统计信息
- 总下载量: 744
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-05-13