Laravel 为视图使用替代路径

Laravel using alternative path for views

我正尝试return从备用文件夹查看

我试过了

View::addLocation('/themes/admin/views');

View::addNamespace('theme', 'themes/admin/views');

return View::make('theme::manage_users');

但我总是出错

View [manage_users] not found.

我通过删除关键字 theme 解决了我的问题,所以它变成了 return View::make('manage_users');