owlgrin / wallet
Easy to plug wallet system in any app
Installs: 105
Dependents: 0
Suggesters: 0
Security: 0
Stars: 12
Watchers: 5
Forks: 4
Open Issues: 14
Requires
- php: >=5.4.0
- illuminate/support: 4.2.*|5.*
This package is not auto-updated.
Last update: 2024-11-23 15:58:22 UTC
README
Wallet allows you to maintain credits for your users.
Installation
To install the package, include the following in your composer.json.
"owlgrin/wallet": "dev-master"
And then include the following service provider in your app.php.
'Owlgrin\Wallet\WalletServiceProvider'
And lastly, publish the config.
php artisan config:publish owlgrin/wallet
Usage
Write this command in your artisan to create migrations
php artisan wallet:table
Now migrate all the tables to your mysql db
php artisan migrate
You can initiate wallet by writing
Wallet::user($userId)
where $userId
is the unique id of your user
Credits
You can add credits of your user
Wallet::credits($credits, $redemptions)
where $credits
is the amount of credits you want to add for your user
and $redemptions
is number of times you want your user to use these credits
Redemptions
You can redeem the credits by using
Wallet::redeem($amount)
where $amount
is the requested amount on which you want to access the credit
Left Credits
You can see the left credits by using
Wallet::left();
Exceptions
Wallet comes with custom exceptions, to make them easier to handle. These are the followin custom exceptions that you can use:
Owlgrin\Wallet\Exceptions\CreditsLimitReachedException; Owlgrin\Wallet\Exceptions\NoCreditsException; Owlgrin\Wallet\Exceptions\InternalException;
Each of these extend an abstract class Owlgrin\Wallet\Exceptions\Exception
.
You can use it like following:
try { Wallet::Redeem(5445); } catch(Owlgrin\Wallet\Exceptions\NoCreditsException $e) { return $e; } catch(Owlgrin\Wallet\Exceptions $e) { return $e; }