mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-20 21:13:59 +00:00
8 lines
225 B
PHP
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');
|
|
});
|