1. Go to this page and download the library: Download kurozora/laravel-cooldown library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
kurozora / laravel-cooldown example snippets
// The user will be able to post again 5 minutes from now
$user->cooldown('create-post')->for('5 minutes');
cooldown('registration')->for('1 hour');
if(cooldown('registration')->notPassed())
return 'Registration is currently unavailable.';
// ... perform account registration ...
cooldown('registration')->for('1 hour');
use Illuminate\Database\Eloquent\Model;
use Kurozora\Cooldown\HasCooldowns;
class User extends Model
{
use HasCooldowns;
}
if($user->cooldown('create-post')->notPassed())
return 'You cannot create a post right now.';
// ... create the post ...
$user->cooldown('create-post')->for('5 minutes');