Core/app/View/Components/AuthLayout.php

30 lines
656 B
PHP
Raw Normal View History

2023-04-11 09:21:20 +00:00
<?php
namespace App\View\Components;
use Illuminate\View\Component;
class AuthLayout extends Component
{
/**
* Create a new component instance.
*
* @return void
*/
public function __construct()
{
// Init layout file
app(config('settings.KT_THEME_BOOTSTRAP.auth'))->init();
}
/**
* Get the view / contents that represents the component.
*
* @return \Illuminate\Contracts\Foundation\Application|\Illuminate\Contracts\View\Factory|\Illuminate\Contracts\View\View
*/
public function render()
{
return view(config('settings.KT_THEME_LAYOUT_DIR').'._auth');
}
}