Merge pull request #1365 from KarimQaderi/patch-5

change route pages to page
This commit is contained in:
Jitendra Singh 2019-10-24 10:37:41 +05:30 committed by GitHub
commit b0b2e26ef2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -305,7 +305,7 @@ Route::group(['middleware' => ['web', 'locale', 'theme', 'currency']], function
});
//customer routes end here
Route::get('pages/{slug}', 'Webkul\CMS\Http\Controllers\Shop\PagePresenterController@presenter')->name('shop.cms.page');
Route::get('page/{slug}', 'Webkul\CMS\Http\Controllers\Shop\PagePresenterController@presenter')->name('shop.cms.page');
Route::fallback('Webkul\Shop\Http\Controllers\HomeController@notFound');
});