PHP code example of ema-salas / otp-generator

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

    

ema-salas / otp-generator example snippets



   /*
    |--------------------------------------------------------------------------
    | Autoloaded Service Providers
    |--------------------------------------------------------------------------
    |
    | The service providers listed here will be automatically loaded on the
    | request to your application. Feel free to add your own services to
    | this array to grant expanded functionality to your applications.
    |
    */

    'providers' => [
        ...
        EmaSalas\OtpGenerator\OtpServiceProvider::class,
    ];
...



  use Illuminate\Database\Eloquent\Model;
  use EmaSalas\OtpGenerator\Otp;

  class MyModel extends Model
  {
    use Otp;
  }



  $myModel = MyModel::where(['column' => $value])->first();
  $token = $myModel->generateToken(string $identifier, int $digits = 4, int $validity = 10)



  $myModel = MyModel::where(['column' => $value])->first();
  $myModel::validateOtp(string $token)
bash
php artisan vendor:publish
bash
php artisan migrate