如何在laravel 5.3中获取刀片模板中的id

时间:2016-09-27 10:01:13

标签: php laravel-5 laravel-5.3

我想在刀片中获取此ID 9             http://localhost/connect/public/index.php/profile/9 我不想路由它

1 个答案:

答案 0 :(得分:1)

你的profilecontroller中的

你的方法是这样的

public function profile($profile){
  // you can call model function and get data from profile id 
 //and then pass it to the view
$data["profile_info"] = "fetch the data from database call your model function "; 
 return View("your_bladefilename",$data);

}

您可以使用profile_info变量

访问刀片文件中的profile_info

在您的刀片文件中

<?php 

    print_r($profile_info);

?>

如果有什么不清楚,请告诉我