我想为登录用户提供一般主页和不同的主页
我在谷歌上搜索了很多但我找不到在我的 if 语句中放入什么
我试过这样的事情:
Route::get('/', array('as'=>'home', function(){
if (!Auth::check()) {
Route::get('/', array('uses'=>'homecontroller@index'));
}
else{
Route::get('/', array('uses'=>'usercontroller@home'));
}
}));
我也尝试使用类似的东西:
return Controller::call('homecontroller@index');
但似乎不适用于 laravel 4
我尝试了很多其他的东西,所以我认为这更像是一个误解问题
如果你有任何线索
感谢您的帮助