laravel-wallet
laravel-wallet copied to clipboard
Easy work with virtual wallet
**Describe your task** Hello I got the following error (sometimes) during withdraw money on wallets ```Maximum execution time of 30 seconds exceeded {"userId":5806,"exception":"[object] (Symfony\\Component\\ErrorHandler\\Error\\FatalError(code: 0): Maximum execution time of 30...
**Describe your task** I have a delete user wallet method : ``` public function delete(Request $request, User $supervisor) { $wallet = $supervisor->getWallet(User::getSupervisorWalletKey($request->institution->id)); if ($wallet) { $wallet->delete(); } return apiSuccess(); }...
**Describe the bug** Using `$customer->paid($product))` fails when product was purchased with money transferred to another wallet. **To Reproduce** Steps to reproduce the behavior: 1. ```php $cart = app(Cart::class) ->withItem($product, receiving:...
**Is your feature request related to a problem? Please describe.** Yes, the current implementation of the `Taxable` adds fee to the product price which is paid by the user. However,...
Hello everyone. I would like to tell you why a new major version is not expected in the near future. The thing is that over the past few years, users...
**Feature Request** **1. Add Final Balance Field to Transactions Table:** **Purpose:** To track the wallet balance immediately after each transaction. **Implementation:** - Add a new column to the Transactions table...
- Added PostgresLockService for handling database-level locks with improved performance. - Updated WalletServiceProvider to resolve lock service based on configuration and database driver. - Enhanced caching strategy to ensure balance...