You can make a custom filter
Route::filter('AuthBackEnd', function()
{
if (Auth::check()) return Redirect::to('admin');
});
use it in Routes as usual
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community