Issue #840 fixed

This commit is contained in:
jitendra 2019-04-18 15:50:03 +05:30
parent 580d3ddf65
commit 7e826bef00
1 changed files with 4 additions and 2 deletions

View File

@ -2,9 +2,9 @@
Route::group(['middleware' => ['web', 'locale', 'theme', 'currency']], function () {
//Store front home
Route::get('/{any?}', 'Webkul\Shop\Http\Controllers\HomeController@index')->defaults('_config', [
Route::get('/', 'Webkul\Shop\Http\Controllers\HomeController@index')->defaults('_config', [
'view' => 'shop::home.index'
])->where('any', '<>', 'mobile')->name('shop.home.index');
])->name('shop.home.index');
//subscription
//subscribe
@ -274,4 +274,6 @@ Route::group(['middleware' => ['web', 'locale', 'theme', 'currency']], function
});
});
//customer routes end here
Route::get('/{any?}', 'Webkul\Shop\Http\Controllers\HomeController@index');
});