我正在cms
为诸如themeforset之类的设计商店制作一个。我正在使用Laravel 4,我需要有关如何上传和呈现用户将上传的 Web 模板的建议。
问问题
936 次
1 回答
4
在里面app/config/view.php
/*
|--------------------------------------------------------------------------
| View Storage Paths
|--------------------------------------------------------------------------
|
| Most templating systems load templates from disk. Here you may specify
| an array of paths that should be checked for your views. Of course
| the usual Laravel view path has already been registered for you.
|
*/
'paths' => array(__DIR__.'/../views'),
因此,您可以使用/添加自己的路径来加载视图。
于 2013-10-31T10:11:33.450 回答