PHP code example of morcen / laravel-otp-generator

1. Go to this page and download the library: Download morcen/laravel-otp-generator 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/ */

    

morcen / laravel-otp-generator example snippets


    'identifier' => 'email'
    

    Schema::create('otps', function (Blueprint $table) {
        $table->id();
        $table->string('email');  // <-- this is the line added to match the `identifier`
        $table->string('code');
        $table->unsignedInteger('expiration');
        $table->timestamp('created_at');
    });
    

use Morcen\LaravelOtpGenerator\Facades\Otp;

$otp = Otp::generateFor('[email protected]');

Otp::validateFor('[email protected]', '028988'); // returns `true`

use Morcen\LaravelOtpGenerator\Facades\Otp;

$otp = Otp::generate();

$otp = Otp::generateFor('[email protected]', 10); 

$otp = Otp::generate(10); 
bash
    php artisan vendor:publish --tag="otp-generator-config"
    
bash
    php artisan vendor:publish --tag="otp-generator-migrations"
    
bash 
    php artisan migrate