mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
9 lines
341 B
PHP
9 lines
341 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Route;
|
|
|
|
Route::group(['prefix' => 'open1688', 'namespace' => 'Open1688', 'as' => 'open1688.'], function () {
|
|
Route::get('/', 'Open1688Controller@keywordSearchProduct')->name('keywordSearchProduct');
|
|
Route::get('/{offer_id}', 'Open1688Controller@getProductDetail')->name('getProductDetail');
|
|
});
|