This commit is contained in:
DESKTOP-5I7S92L\nicho
2023-04-05 16:21:53 +08:00
parent 1f6eaa65a5
commit 70fc8285f8
5 changed files with 122 additions and 1 deletions
+1
View File
@@ -4,6 +4,7 @@ use Illuminate\Support\Facades\Route;
Route::group(['prefix' => 'order', 'as' => 'order.', 'namespace' => 'Orders'], function () {
Route::get('/show/{id}', 'FetchOrderController@fetch')->name('show');
Route::get('/v2/show/{id}', 'FetchOrderV2Controller@fetch')->name('v2.show');
Route::get('/list', 'ListOrdersController@list')->name('list');
Route::post('/create', 'CreateOrderController@create')->name('create');
Route::put('/confirm/{id}', 'ConfirmOrderController@confirm')->name('confirm');