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?
Try with
public function index() {
\Redirect::to('www.laravel.io');
}
Add a \ before the facade Redirect
Sign in to participate in this thread!
The Laravel portal for problem solving, knowledge sharing and community building.
The community