Without seeing your code, you can something like.
Route::group(array('before' => 'auth'), function() { Route::get('/', array('as' => 'home', 'uses' => 'HomeController@getIndex')); });
'before' => 'auth' in the snippet @frocco provided is setting a before filter. This will run before the method the route goes to is made. By setting it to auth, it will make sure the user is authenticated and if not redirect them to /login. This can be changed in app/filters.php.
Thanks for the replies.
It worked for me.I added all the necessary routes inside the group filter.
Route::group(array('before' => 'auth'), function() { Routes goes here.... });
Thank you.....
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community