Support the ongoing development of Laravel.io →
Configuration IOC Architecture

I have a controller that does this

public function index() { Redirect::to('www.laravel.io'); }

Returns error: Class 'App\Http\Controllers\Redirect' not found

I've tried

use Illuminate\Routing\Redirector;

Illuminate\Routing\Redirector\Redirect::to('www.laravel.io');

\Illuminate\Routing\Redirector\Redirect::to('www.laravel.io');

Can't figure it out, needless to say I'm a noob, can from .NET and decided to come to the Light side. Can you teach a man to fish here?

Last updated 2 years ago.
0

Try with

public function index() { 
  \Redirect::to('www.laravel.io'); 
}

Add a \ before the facade Redirect

0

Sign in to participate in this thread!

Eventy

Your banner here too?

mitchem151 mitchem151 Joined 26 Mar 2015

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2025 Laravel.io - All rights reserved.