allevi18/laravel-wallet

轻松处理虚拟钱包。

v7.3.0 2022-02-16 18:57 UTC

This package is not auto-updated.

Last update: 2024-09-27 22:21:45 UTC


README

Laravel Wallet

Maintainability Test Coverage Financial Contributors on Open Collective Mutation testing badge

Package Rank Latest Stable Version Latest Unstable Version License composer.lock

Sparkline

laravel-wallet - 轻松处理虚拟钱包。

[文档] [开始使用]

[文档] [如何开始]

  • 供应商: bavix
  • : laravel-wallet
  • 版本: 最新稳定版本
  • PHP 版本: 7.3+ (如果你使用 5.x 版本,则为 7.2+)
  • Laravel 版本: 5.5, 5.6, 5.7, 5.8, 6.x, 7.x, 8.x
  • Composer: composer require bavix/laravel-wallet

升级指南

从版本 5.x 开始,已停止支持 Laravel 5。更新 Laravel 或使用 4.x 版本。

要执行迁移,你可以按照说明进行操作

扩展

使用方法

HasWallet 特性和 Wallet 接口添加到模型。

use Bavix\Wallet\Traits\HasWallet;
use Bavix\Wallet\Interfaces\Wallet;

class User extends Model implements Wallet
{
    use HasWallet;
}

现在我们进行交易。

$user = User::first();
$user->balance; // int(0)

$user->deposit(10);
$user->balance; // int(10)

$user->withdraw(1);
$user->balance; // int(9)

$user->forceWithdraw(200, ['description' => 'payment of taxes']);
$user->balance; // int(-191)

购买

CanPay 特性和 Customer 接口添加到 User 模型。

use Bavix\Wallet\Traits\CanPay;
use Bavix\Wallet\Interfaces\Customer;

class User extends Model implements Customer
{
    use CanPay;
}

HasWallet 特性和 Product 接口添加到 Item 模型。

use Bavix\Wallet\Traits\HasWallet;
use Bavix\Wallet\Interfaces\Product;
use Bavix\Wallet\Interfaces\Customer;

class Item extends Model implements Product
{
    use HasWallet;

    public function canBuy(Customer $customer, int $quantity = 1, bool $force = null): bool
    {
        /**
         * If the service can be purchased once, then
         *  return !$customer->paid($this);
         */
        return true; 
    }
    
    public function getAmountProduct(Customer $customer)
    {
        return 100;
    }

    public function getMetaProduct(): ?array
    {
        return [
            'title' => $this->title, 
            'description' => 'Purchase of Product #' . $this->id,
        ];
    }
    
    public function getUniqueId(): string
    {
        return (string)$this->getKey();
    }
}

进行购买。

$user = User::first();
$user->balance; // int(100)

$item = Item::first();
$user->pay($item); // If you do not have enough money, throw an exception
var_dump($user->balance); // int(0)

if ($user->safePay($item)) {
  // try to buy again )
}

var_dump((bool)$user->paid($item)); // bool(true)

var_dump($user->refund($item)); // bool(true)
var_dump((bool)$user->paid($item)); // bool(false)

预加载

User::with('wallet');

如何处理小数?

HasWalletFloat 特性和 WalletFloat 接口添加到模型。

use Bavix\Wallet\Traits\HasWalletFloat;
use Bavix\Wallet\Interfaces\WalletFloat;
use Bavix\Wallet\Interfaces\Wallet;

class User extends Model implements Wallet, WalletFloat
{
    use HasWalletFloat;
}

现在我们进行交易。

$user = User::first();
$user->balance; // int(100)
$user->balanceFloat; // float(1.00)

$user->depositFloat(1.37);
$user->balance; // int(237)
$user->balanceFloat; // float(2.37)

支持者

Supported by JetBrains

贡献者

代码贡献者

本项目之所以存在,多亏了所有贡献者。[贡献].

财务贡献者

成为财务贡献者,帮助我们维持社区。[贡献]

个人

组织

使用您的组织支持此项目。您的标志将在此处显示,并带有指向您网站的链接。[贡献]