In Laravel when I post a form and then try to redirect route, its redirect correctly but a plain text show on the top of blank page then disappear, the plain text is
"Redirecting to route(my route name)"
my redirect code is
return Redirect::route('add_episode_banner', array('episode' => $id))->with('message', 'episode Add Successfully!');
try use
return redirect('route/test', array('episode' => $id))->with('message', 'episode Add Successfully!')