PHP code example of cristianpeter / laravel-disposable-contact-guard

1. Go to this page and download the library: Download cristianpeter/laravel-disposable-contact-guard 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/ */

    

cristianpeter / laravel-disposable-contact-guard example snippets


    use Illuminate\Support\Facades\Schedule;
    
    Schedule::command('disposable:update')->weekly();
    Schedule::command('disposable-numbers:update')->weekly();

    

    protected function schedule(Schedule $schedule)
    {
        $schedule->command('disposable:update')->weekly();
        $schedule->command('disposable-numbers:update')->weekly();
       
    }
    

'field' => 'email|indisposable',

'field' => 'real_phone',
bash
    php artisan vendor:publish --tag=laravel-disposable-guard
    
bash
    php artisan disposable:update
    
bash
    php artisan disposable-numbers:update