Laravel - Routing
What is wrong with this route group declaration?
Route::group(['middleware' => 'auth'], function() {
Route::get('dashboard', 'DashboardController@index');
});