2018-07-12 07:12:48 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
Route::group(['middleware' => ['web']], function () {
|
2018-07-28 13:03:47 +00:00
|
|
|
Route::get('/', 'Webkul\Shop\Http\Controllers\HomeController@index')->defaults('_config', [
|
2018-08-17 05:48:21 +00:00
|
|
|
'view' => 'shop::store.home.index'
|
|
|
|
|
]);
|
2018-07-12 07:12:48 +00:00
|
|
|
|
2018-08-17 05:48:21 +00:00
|
|
|
Route::get('/categories/{slug}', 'Webkul\Shop\Http\Controllers\ProductController@index')->defaults('_config', [
|
|
|
|
|
'view' => 'shop::products.index'
|
|
|
|
|
]);
|
|
|
|
|
});
|