Server IP : 66.29.132.124 / Your IP : 18.118.186.156 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 : |
# Withdraw When there is enough money in the account, you can transfer/withdraw it or buy something in the system. Since the currency is virtual, you can buy any services on your website. For example, priority in search results. --- ## User Model [User Simple](_include/models/user_simple.md ':include') ## Make a Withdraw Find user: ```php $user = User::first(); ``` As the user uses `HasWallet`, he will have `balance` property. Check the user's balance. ```php $user->balance; // int(100) ``` The balance is not empty, so you can withdraw funds. ```php $user->withdraw(10); $user->balance; // int(90) ``` It worked! ## Force Withdraw Forced withdrawal is necessary for those cases when the user has no funds. For example, a fine for spam. ```php $user->balance; // int(100) $user->forceWithdraw(101); $user->balance; // int(-1) ``` ## And what will happen if the money is not enough? There can be two situations: - The user's balance is zero, then we get an error `Bavix\Wallet\Exceptions\BalanceIsEmpty` - If the balance is greater than zero, but it is not enough `Bavix\Wallet\Exceptions\InsufficientFunds`