|
@@ -36,16 +36,16 @@ if ($host == 'internal-demo-site.mietubl.com.cn') {
|
|
|
->first();
|
|
|
|
|
|
if ($categoryId) {
|
|
|
- return redirect()->route('products.categories', ['slug' => $categoryId]);
|
|
|
+ return ProductController::category($slug);
|
|
|
} else {
|
|
|
$page = SitePage::where('status', '1')->where('dist_id', getDistId())->where('slug', $slug)->first();
|
|
|
if ($page) {
|
|
|
- return redirect()->route('page.detail', ['slug' => $slug]);
|
|
|
+ return PageController::detail($page);
|
|
|
}
|
|
|
}
|
|
|
});
|
|
|
Route::get('/produto/{slug}', function ($slug) {
|
|
|
- return redirect()->route('products.detail', ['id' => $slug]);
|
|
|
+ return ProductController::detail($slug);
|
|
|
});
|
|
|
}
|
|
|
|