Issue #840 fixed
This commit is contained in:
parent
580d3ddf65
commit
7e826bef00
|
|
@ -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');
|
||||
});
|
||||
|
|
|
|||
Loading…
Reference in New Issue