PHP code example of nextapps / laravel-verification-code

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

    

nextapps / laravel-verification-code example snippets


use Wotz\VerificationCode\VerificationCode;

VerificationCode::send($email);

use Wotz\VerificationCode\VerificationCode;

VerificationCode::verify($code, $email);

use Wotz\VerificationCode\VerificationCode;

VerificationCode::verify($code, $email, $deleteAfterVerification);

php artisan verification-code:prune --hours=24
bash
php artisan vendor:publish --provider="Wotz\VerificationCode\VerificationCodeServiceProvider" --tag="migrations"
bash
php artisan migrate
bash
php artisan vendor:publish --provider="Wotz\VerificationCode\VerificationCodeServiceProvider" --tag="config"