在Laravel 5中使用Variable重定向url

Kar*_*esh 1 php laravel laravel-5 laravel-5.2

如何以下列格式重定向URL:

我的代码:

return Redirect::to('home/viewcustomer/$cusid')
    ->with('status','success')
    ->with('message','success');
Run Code Online (Sandbox Code Playgroud)

示例:

home/viewcustomer/8

Nar*_*dia 5

字符串引号中使用变量时,您需要注意字符串引号.只需更新您的代码

Redirect::to('home/viewcustomer/$cusid')
Run Code Online (Sandbox Code Playgroud)

Redirect::to("home/viewcustomer/$cusid")
            ^^                        ^^
Run Code Online (Sandbox Code Playgroud)