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
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.
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