我正在尝试在laravel 5.3中构建一个saas application
(saas这里意味着软件即服务)。我正在尝试通过扩展ViewServiceProvider
来实现视图文件夹目标。例如,我对两个不同的域有两个不同的主题。我在不同文件夹的视图中使用了一组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文件夹或子视图。为了实现这一点,我正在扩展ViewServiceProvider
和config/app.php
我只是评论ViewServiceProvider
并添加了WebViewServiceProvider
我做的,它没有设置目的地,这是我的代码:
namespace Nitseditor\System\Providers;
use Illuminate\View\FileViewFinder;
use Illuminate\View\ViewServiceProvider;
use Nitseditor\System\Models\Domain;
class WebViewServiceProvider extends ViewServiceProvider
{
/**
* Register View Folder
*
* @return void
*/
public function registerViewFinder()
{
$this->app->bind('view.finder', function ($app) {
$paths = $app['config']['view.paths'];
$http_req = php_sapi_name() == 'cli' ? 'noetic.com' : $this->app['request']->server('HTTP_HOST');
$domainName = explode(":", $http_req)[0];
$domain = Domain::where('domain_name', $domainName)->first();
if($domain)
{
foreach ($domain->themes as $theme)
{
$paths = 'Nitseditor\System\Resources\Views\Themes\\' . $theme->theme_name;
}
}
return new FileViewFinder($app['files'], array(base_path($paths)));
});
}
}
我的config \ app.php看起来像:
// Illuminate\View\ViewServiceProvider::class,
Nitseditor\System\Providers\WebViewServiceProvider::class,
在执行和检查控制器时,我可以看到视图的目标路径与默认值相同
class DomainController extends Controller {
public function checkDomain()
{
$app = App::make('config');
dd($app);
}
}
修改
我尝试在没有条件语句的情况下执行它恰好相同。
public function registerViewFinder()
{
$this->app->bind('view.finder', function ($app) {
$paths = 'Nitseditor\System\Resources\Views\Themes\Themeone';
return new FileViewFinder($app['files'], array(base_path($paths)));
});
}
帮我解决这个问题。
答案 0 :(得分:0)
好吧,我继续尝试转储代码并尝试检查$app
数组。我想当我尝试App::make::('config')
时laravel从配置文件中收集信息并显示app的配置数组,其中没有显示动态配置。
然后我只是尝试检查我的观点:
return view('template');
它显示了我需要的刀片文件/视图,它可能对某人有所帮助。不要惊慌
$app = App::make('config');
dd($app);
干杯!!