PHP code example of idf / laravel-real-email-validation

1. Go to this page and download the library: Download idf/laravel-real-email-validation 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/ */

    

idf / laravel-real-email-validation example snippets


$this->validate($request, [
    'email' => ['

// checks without network requests
new RealEmail(['html5', 'rfc'])
bash
php artisan vendor:publish --provider="IDF\RealEmailValidation\ServiceProvider"