Laravel same route, different controller

后端 未结 4 1276
执念已碎
执念已碎 2020-12-19 12:16

I would like to have general home page and a different homepage for logged-in users
I search a lot on google but I can\'t find what to put in my if statement

I t

4条回答
  •  抹茶落季
    2020-12-19 12:33

    ok after discussions on this platform and other forums, I come back with a compact solution

    Route::get('/', array('as'=>'home', 'uses'=> (Auth::check()) ? "usercontroller@home" : "homecontroller@index" ));
    

提交回复
热议问题