我在溃败中

$app->get('setChangePrice/{fecha}','AtlanticControllerChangePrice@setChangePrice');


网址将如何花费日期?ejm

http://localhost:8000/setChangePrice/fecha:2017-01-16


以及如何获得它?

function setChangePrice(Request $request){

        return $request->get('fecha');
}


我不知道怎么做!谢谢

最佳答案

语法是

function setChangePrice($fecha,Request $request){

    return $fecha;
}



在这里阅读https://laravel.com/docs/5.3/routing#required-parameters

10-08 00:47