From 283b910cc3657c8b3e320cea7f42e3338f0be2b5 Mon Sep 17 00:00:00 2001 From: Mohit Panjwani Date: Wed, 11 Dec 2019 20:16:11 +0530 Subject: [PATCH] remove state & city routes from api.php and fix cancel spelling mistake --- resources/assets/js/views/wizard/UserProfile.vue | 2 +- routes/api.php | 10 ---------- 2 files changed, 1 insertion(+), 11 deletions(-) diff --git a/resources/assets/js/views/wizard/UserProfile.vue b/resources/assets/js/views/wizard/UserProfile.vue index 977ce05e..774a7ba7 100644 --- a/resources/assets/js/views/wizard/UserProfile.vue +++ b/resources/assets/js/views/wizard/UserProfile.vue @@ -18,7 +18,7 @@ 'LocationController@getCountries' ]); -Route::get('/states/{id}', [ - 'as' => 'states', - 'uses' => 'LocationController@getStates' -]); - -Route::get('/cities/{id}', [ - 'as' => 'cities', - 'uses' => 'LocationController@getCities' -]); - // Onboarding //----------------------------------