infinety-es/token is a Laravel package for custom token generation.
It currently has 0 GitHub stars and 11 downloads on Packagist (latest version 1.1).
Install it with composer require infinety-es/token.
Discover more Laravel packages by infinety-es
or browse all Laravel packages to compare alternatives.
Last updated
Manages random tokens for password resets and other one-time actions
Install via composer: composer require infinety-es/token
Add services provider to config/app.php:
Infinety\Token\TokenServiceProvider::class,Run php artisan token:migration then php artisan migrate to add the Token database table
Infinety\Token\Token, which can be instantiated by the container. Example: $token = new Token;
$token->add($myId, 'test', 1)
Token::new(int $ref, string $type, int $expires = null) returns a hasID 40-character codeToken::find(string $code, string $type, bool $$returnRef = true) returns the reference ID or null if $returnId is = true, or Hashids decoded stringsToken::remove(string $code, string $type) deletes the token associated with the code (if found)