PHP code example of triverla / laravel-otp

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

    

triverla / laravel-otp example snippets


Triverla\LaravelOtp\OtpServiceProvider::class

'Otp' => Triverla\LaravelOtp\OtpServiceProvider::class

use Triverla\LaravelOtp\Facades\Otp;

otp()

$otp = Otp::generate($unique_secret); // string
$otp = otp()->generate($unique_secret); // string


$otp = Otp::generate($unique_secret); 

$check = otp()->verify($otp, $unique_secret); // bool



$otp = otp()->regenerate($unique_secret, false); // true to change OTP and false to use same OTP


use Triverla\LaravelOtp\Helpers\OtpNotificationRequest;

$sendOtp = Otp::notify(new OtpNotificationRequest(otp()->generate($unique_secret), $emailAddress, $mobileNumber)); // bool

// $emailAddress and $mobileNumber are nullable. You can use both or either.

php artisan vendor:publish --provider="Triverla\LaravelOtp\OtpServiceProvider"