我正在为诸如themeforset之类的设计商店制作cms
。我正在使用Laravel 4,我需要有关如何上传和呈现用户上传的网页模板的建议。
答案 0 :(得分: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'),
因此,您可以使用/添加自己的路径来加载视图。