Laravel Route获取控制器的构造而不使用方法

时间:2016-11-17 05:58:00

标签: php laravel

Route::get('customer/{id}', 'Customer@method'); <-- want to call construct not method

class Customer extends Controller
{
    public function __construct(){
        echo 123456;
    }

我是laravel的新手

我尝试在没有方法的情况下从我的控制器调用__construct,但是我得到了错误,有人知道怎么做吗?

1 个答案:

答案 0 :(得分:0)

尝试这样做

  1. 定义路线
  2.   

    路由::资源(&#39;客户/ {id}&#39;,&#39;客户&#39;);

    1. 在您的客户控制器中
    2. use Route;
      public function __construct()
      {
        $id = Route::current()->getParameter('id');
        dd($id);
      }