PHP code example of alrez96 / laravel-otp

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

    

alrez96 / laravel-otp example snippets




use Alrez96\LaravelOtp\Facades\Otp;

Otp::generateToken(string $identifier);

// or using helper

otp()->generateToken(string $identifier);



use Alrez96\LaravelOtp\Facades\Otp;

Otp::validateToken(string $identifier, string $token);

// or using helper

otp()->validateToken(string $identifier, string $token);
bash
php artisan vendor:publish --provider="Alrez96\LaravelOtp\OtpServiceProvider"