Try this:
return Redirect::route('home');
As @stealthify has mentioned, this code is better suited for a controller or filter. This is definitely not view logic (neither is the direct database call inside of the view - that belongs in the model layer). Additionally you can get a more reliable form of the user's IP via the Request facade.
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.