Laravel redirect::route is showing a message between page loads

后端 未结 4 1583
天命终不由人
天命终不由人 2021-01-06 04:57

I\'m currently developing a web app using Laravel, and the app was working perfectly fine until recently. I had no idea what triggered it but here\'s a summary of the issue

4条回答
  •  無奈伤痛
    2021-01-06 05:47

    In my app the problem was caused by a cast to string:

    public function myAction(): string {
       return redirect('/');
    }
    

    I had to remove : string to prevent the response from being cast to a string.

提交回复
热议问题