PHP code example of enimiste / laravel-uniqueable-jobs-l53

1. Go to this page and download the library: Download enimiste/laravel-uniqueable-jobs-l53 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/ */

    

enimiste / laravel-uniqueable-jobs-l53 example snippets


Com\NickelIT\UniqueableJobs\UniqueableJobsServiceProvider::class,

$u = User::first();
    $job = new DoSomething('Hello from unique job ' . $u->email);
    $job->unique(User::class, $u->id);
    dispatch($job);
    
    $job = new DoSomething('Hello from unique job ' . $u->email);
    $job->unique(User::class, $u->id);
    dispatch($job);
//In this case the job will be stored once if it was already in the db
bash
php artisan queue:table
php artisan vendor:publish --tag=migrations