2c539d349d
Updated Module Files
12 lines
279 B
Plaintext
12 lines
279 B
Plaintext
<?php
|
|
|
|
Route::get('/', 'IndexController@index');
|
|
|
|
/*
|
|
* To register a route that needs to be authentication, wrap it in a
|
|
* Route::group() with the auth middleware
|
|
*/
|
|
// Route::group(['middleware' => 'auth'], function() {
|
|
// Route::get('/', 'IndexController@index');
|
|
// })
|