mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-20 13:04:02 +00:00
10 lines
381 B
PHP
10 lines
381 B
PHP
<?php
|
|
|
|
use App\Http\Controllers\Jobs\FetchJobResultController;
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'job', 'as' => 'job.'], function () {
|
|
Route::get('/fetch/{job_id}', [FetchJobResultController::class, 'fetch'])->name('fetch');
|
|
Route::get('/fetch/{job_id}/{is_last}', [FetchJobResultController::class, 'fetch'])->name('fetch.last.attempt');
|
|
});
|