Redirect to frontend view after backend create/update

How can I setup a redirect within my backend controller so that when the user submits the create/update they are redirected to the frontend view.

Hi!

For example in your Backend Controller something like this:




return $this->redirect(['frontend/blabla/view', 'id' => $myModel->id]);



Regards