This forum has moved to a new location and is in read-only mode. Please visit talk.octobercms.com to access the new location.

chad
chad

What is the best practice for redirecting the user to a new action in the backend? I don't see a controller method for doing this in the API.

billyZduke
billyZduke

I have the same question, exactly 1 year later.

Scott
Scott

Not sure exactly what is being asked here, but you can return a Redirect from your backend controllers.

use Redirect;
use Backend\Classes\Controller;

class Whatever extends Controller
{
    public function hello()
    {
        return Redirect::to("foo/bar")
    }
}

1-3 of 3

You cannot edit posts or make replies: the forum has moved to talk.octobercms.com.