Move authentication around.

This commit is contained in:
James Cole
2016-01-08 18:29:47 +01:00
parent c0fad106f0
commit fd9a7080ea
26 changed files with 51 additions and 3 deletions

View File

@@ -265,13 +265,13 @@ Route::group(
['middleware' => 'web'], function () {
Route::auth();
Route::get('/home', 'HomeController@index');
//Route::get('/home', 'HomeController@index');
}
);
Route::group(
['middleware' => ['auth', 'range', 'web']], function () {
['middleware' => ['range', 'web']], function () {
/**
* Home Controller