Add the order method and its route.
continuous-integration/drone/push Build is passing

This commit is contained in:
2023-06-22 11:06:10 +03:00
parent 8dcb580393
commit 2851fe86bb
2 changed files with 62 additions and 0 deletions
+1
View File
@@ -34,6 +34,7 @@ Route::group([
Route::post('select-city', 'CartController@selectCity');
Route::post('select-company', 'CartController@selectCompany');
Route::post('add-item', 'CartController@addItem');
Route::get('order', 'CartController@order');
// User
Route::post('register', 'UserController@register');