Server IP : 66.29.132.124 / Your IP : 18.188.137.209 Web Server : LiteSpeed System : Linux business141.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64 User : wavevlvu ( 1524) PHP Version : 7.4.33 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : OFF | Pkexec : OFF Directory : /home/wavevlvu/book24.ng/vendor/bavix/laravel-wallet/docs/ |
Upload File : |
## Laravel Wallet Swap ## Composer The recommended installation method is using [Composer](https://getcomposer.org/). In your project root just run: ```bash composer req bavix/laravel-wallet-swap ``` ### User model We need a simple model with the ability to work multi-wallets. ```php use Bavix\Wallet\Interfaces\Wallet; use Bavix\Wallet\Traits\HasWallets; use Bavix\Wallet\Traits\HasWallet; class User extends Model implements Wallet { use HasWallet, HasWallets; } ``` ### Simple example Find wallets and exchange from one to another. ```php $usd = $user->getWallet('usd'); $rub = $user->getWallet('rub'); $usd->balance; // int(200) $rub->balance; // int(0) $usd->exchange($rub, 10); $usd->balance; // int(190) $rub->balance; // int(622) ``` It worked!