我正在尝试在laravel 5.3
中构建一个saas应用程序(saas在这里意味着软件即服务)。我建立了很少的服务提供商,收集域名,使用的主题和那些特定网站的数据库。现在,我正在尝试使用view structure
到service provider
来实现这些网页。现在举例来说,我对两个不同的域有两个不同的主题。我在不同文件夹的视图中使用了一组HTML代码,如下所示:
View
----| Theme One
--------| Navbar
--------| Sliders
--------| Tabs
--------| Parallax
--------| Iconbox
--------| template.blade.php
----| Theme Two
--------| Navbar
--------| Sliders
--------| Tabs
--------| Parallax
--------| Iconbox
--------| template.blade.php
现在我想为这些域动态定义文件夹结构,以便它显示各自主题的模块。就像假设我想要包含Navbar的子视图一样,我只需要编写
@include('Navbar')
它应该访问相应的主题Navbar文件夹或子视图。我想过要建立一个服务提供商并试图通过配置设置这样的路径:
public function boot()
{
$this->webView = $this->setPath();
$this->app->singleton('webView', function()
{
return $this->webView;
});
}
public function setPath()
{
$themename = App::make('themename')
if($themename)
{
$setpath = "..Path\Views\" . $themename;
Config::set('view.paths', $setpath);
return null;
}
else
{
return "Not found";
}
}
但我想当应用程序引导它会忽略配置时,我知道必须有更好的方法来实现它。请指导我。
答案 0 :(得分:3)
首先在 ViewServiceProvider
中创建 App\Providers
,或者在 Illuminate\View\ViewServiceProvider
> app/Providers
&像这样改变
<?php
namespace App\Providers;
use Illuminate\View\FileViewFinder;
use Illuminate\View\ViewServiceProvider as ConcreteViewServiceProvider;
class ViewServiceProvider extends ConcreteViewServiceProvider
{
/**
* Register the view finder implementation.
*
* @return void
*/
public function registerViewFinder()
{
$this->app->bind('view.finder', function ($app) {
$paths = $app['config']['view.paths'];
//change your paths here
foreach ($paths as &$path)
{
$path .= time();//change with your requirement here I am adding time value with all path
}
return new FileViewFinder($app['files'], $paths);
});
}
}
然后将 Illuminate\View\ViewServiceProvider::class,
替换为 App\Providers\ViewServiceProvider::class,
中的 config/app.php
。这样就可以了。