I'm so dumb... I knew it was a routing error. I changed the 'before' to 'after' in my routes file.
Route::get('/', array('after'=>'auth',function(){
return View::make('users.dashboard');
}));
Route::controller('users', 'UsersController');
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community