getting warning “Header may not contain more than a single header, new line detected”

后端 未结 7 918
遇见更好的自我
遇见更好的自我 2020-12-07 01:07

I am doing coding in oops for uploading image in PHP. But After submit image, it\'s giving warning

\"Header may not contain more than a single header, new line detec

7条回答
  •  感动是毒
    2020-12-07 01:37

    in "Illuminate\Auth\Middleware\Authenticate" The method "redirectTo" should return an url path, not the Redirect response.

    ...
    protected function redirectTo()
    {
        if(\Auth::user()->hasRole('copy')){
            return '/copy/dashboardCopy';
        }       
    }
    ...
    

提交回复
热议问题