[WIP] Setup of skeleton

This commit is contained in:
Ludovic CANDELLIER
2020-03-25 00:08:27 +01:00
parent baf8e13c25
commit 36267139a1
377 changed files with 18248 additions and 26 deletions

View File

@@ -11,6 +11,14 @@
|
*/
Route::get('/', function () {
return view('welcome');
});
Auth::routes();
Route::get('', 'Shop\HomeController@index')->name('welcome');
Route::get('home', 'Shop\HomeController@index')->name('home');
// include( __DIR__ . '/boilerplate/route.php');
// include( __DIR__ . '/admin/route.php');
include( __DIR__ . '/shop/route.php');
Route::get('cache', 'JS\CacheController@getCacheVersions')->name('cacheVersions');