PHP code example of imtigger / laravel-job-status-progress-view

1. Go to this page and download the library: Download imtigger/laravel-job-status-progress-view 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/ */

    

imtigger / laravel-job-status-progress-view example snippets


'providers' => [
    ...
    Imtigger\LaravelJobStatus\LaravelJobStatusServiceProgressViewProvider::class,
]

    ...
    \Imtigger\LaravelJobStatus\ProgressController::routes();

    $this->dispatch($job);
    return redirect()->action('\Imtigger\LaravelJobStatus\ProgressController@progress', [$job->getJobStatusId()]);