Download the PHP package kurozora/laravel-cooldown without Composer
On this page you can find all versions of the php package kurozora/laravel-cooldown. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download kurozora/laravel-cooldown
More information about kurozora/laravel-cooldown
Files in kurozora/laravel-cooldown
Package laravel-cooldown
Short Description Easily implement global or model-specific cooldowns into your Laravel app.
License MIT
Homepage https://github.com/Kurozora/laravel-cooldown
Informations about the package laravel-cooldown
plug-and-play global and model-specific cooldowns
Laravel Cooldowns
This Laravel package makes it easier to implement cooldowns into your app.
Consider the following example:
Installation
You can install the package via composer:
Usage
Global cooldowns
Global cooldowns aren't tied to any model and are the same throughout your entire app.
Use the cooldown
helper to create one:
Here's an example of how you could limit registration to once per hour:
Model-specific cooldowns
Of course, a more useful use-case would be to tie cooldowns to models. In order to make use of this, you'll need to add the trait to your model:
The API used to interact with model-specific cooldowns is the exact same as global cooldowns, however you use the cooldown
method on the model itself:
`
All cooldown methods
These methods are available for both global and model-specific cooldowns.
for()
Cooldown for a timespan
Pass along a string with the desired timespan.
until()
Cooldown for a given datetime
Pass along a Carbon object with the desired datetime.
reset()
Reset the cooldown
The cooldown will be reset, and the action will be available immediately.
passed()
Checks whether the cooldown has passed. Returns true if the cooldown hasn't ever been initiated.
notPassed()
Checks whether the cooldown is still active, and thus hasn't passed yet.
expiresAt()
Get the expiration date
Returns the datetime at which the cooldown will pass.
`
get()
Returns the underlying Cooldown model.
`
Testing
Contributing
Please see CONTRIBUTING for details.
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Contributors ✨
Thanks goes to these wonderful people (emoji key):
Musa 💻 📖 |
Kirito 🎨 |
This project follows the all-contributors specification. Contributions of any kind welcome!
License
The MIT License (MIT). Please see License File for more information.