file-management-system/app/View/Components/DefaultLayout.php

31 lines
671 B
PHP
Raw Normal View History

2023-04-11 09:21:20 +00:00
<?php
namespace App\View\Components;
use Illuminate\View\Component;
class DefaultLayout extends Component
{
/**
* Create a new component instance.
*
* @return void
*/
public function __construct()
{
// Init layout file
app(config('settings.KT_THEME_BOOTSTRAP.default'))->init();
}
/**
* Get the view / contents that represent the component.
*
* @return \Illuminate\Contracts\View\View|\Closure|string
*/
public function render()
{
// See also starterkit/app/Core/Bootstrap/BootstrapDefault.php
return view(config('settings.KT_THEME_LAYOUT_DIR').'._default');
}
}