Files
exchange-2.0/routes/job.php
T
2023-08-24 19:22:20 +08:00

8 lines
225 B
PHP

<?php
use Illuminate\Support\Facades\Route;
Route::group(['prefix' => 'job', 'as' => 'job.', 'namespace' => 'Services'], function () {
Route::get('/fetch/{job_id}', 'FetchJobResultController@fetch')->name('fetch');
});