Download the PHP package crow/laravel-activation-code without Composer
On this page you can find all versions of the php package crow/laravel-activation-code. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download crow/laravel-activation-code
More information about crow/laravel-activation-code
Files in crow/laravel-activation-code
Informations about the package laravel-activation-code
Install for laravel
1. Open file bootstrap/providers.php and connect the provider from the package (optional, using laravel discovered package system by default)
2. Run commands
For creating config file
For creating migration file
For generate table
ENV variables
File .env
Total of attempt for enter code
Total of attempt for enter code (for sms mode)
Generate code mode
Generate code mode (for sms mode)
Code length
Code length (for sms mode)
Code TTL
Code TTL (for sms mode)
Custom model
Step 1
Create custom model for activation code
Example:
File: app/CustomFile.php
Content:
Step 2
Open config/activation_code.php and change parameter "model", example:
Usage
Initialize service
or injected
or use helper
further we will use the variable $service
Generation code
Returned \Crow\LaravelActivationCode\Model\ActivationCode eloquent model
Basic usage with min parameters
Usage with parameter
Check activation code on of valid
Returned \Crow\LaravelActivationCode\Model\ActivationCode eloquent model
If returned model, then code valid
or
Delete activation code
Use if you need to activate the code or just delete it
Configuring activation code
All configuration is optional depending on the task
Example
- setMode - code generation mode (null - use default configuration, sms - use configuration for sms mode) (only works for configurations that have not been manually overridden)
- setGenerateCodeMode - rule of generation code
-
- Crow\LaravelActivationCode\ActivationCodeService::GENERATE_CODE_MODE_ALPHABET (1) - only letters, case insensitive
-
- Crow\LaravelActivationCode\ActivationCodeService::GENERATE_CODE_MODE_ALPHABET_LOWER (2) - only lowercase letters
-
- Crow\LaravelActivationCode\ActivationCodeService::GENERATE_CODE_MODE_ALPHABET_UPPER (3) - only uppercase letters
-
- Crow\LaravelActivationCode\ActivationCodeService::GENERATE_CODE_MODE_NUMBER (4) - only numbers
-
- Crow\LaravelActivationCode\ActivationCodeService::GENERATE_CODE_MODE_ALL (5) - (default) letters and numbers
- setCodeLength - code length
- setCodeTTL - code lifetime, format: 10m (example: 10 - 10 seconds, 10m - 10 minutes, 10h - 10 hours, 10d - 10 days)
- setMaxAttempt - maximum number of attempts to enter the code (use when checking code)
Reset configuration
- mode
- generationCode
- code length
- code ttl
- max attempt
Example
With custom configuration