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/ */
$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.