Skip to content

Commit e03dfb2

Browse files
committed
date
1 parent b5fff71 commit e03dfb2

File tree

2 files changed

+8
-10
lines changed

2 files changed

+8
-10
lines changed

README.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
https://shoping.github.io/public
2-
31
## Installation
42

53
**Clone the repo**

routes/web.php

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
// Route::get('/{list}', 'MainController@list')->name('shoping.list');
1919
// Route::get('list/{product?}', 'MainController@product')->name('shoping.product');
2020
//});
21-
Route::get('/', 'Shoping\MainController@index');
22-
Route::get('/blog', 'Shoping\MainController@blog');
23-
Route::get('/about','Shoping\MainController@about');
24-
Route::get('/contact','Shoping\MainController@contact');
25-
Route::get('/products','Shoping\MainController@products');
26-
Route::get('/category','Shoping\MainController@category');
27-
Route::get('/category/{list}','Shoping\MainController@list');
28-
Route::get('/category/{list}/{product?}','Shoping\MainController@product');
21+
Route::get('/', 'Shoping\MainController@index')->name('index');
22+
Route::get('/blog', 'Shoping\MainController@blog')->name('blog');
23+
Route::get('/about','Shoping\MainController@about')->name('about');
24+
Route::get('/contact','Shoping\MainController@contact')->name('contact');
25+
Route::get('/products','Shoping\MainController@products')->name('products');
26+
Route::get('/category','Shoping\MainController@category')->name('category');
27+
Route::get('/category/{list}','Shoping\MainController@list')->name('list');
28+
Route::get('/category/{list}/{product?}','Shoping\MainController@product')->name('product');
2929

3030

0 commit comments

Comments
 (0)