Files
Atomcms-edit/app/View/Components/InstallationLayout.php
T
2026-05-09 17:32:17 +02:00

22 lines
388 B
PHP
Executable File

<?php
declare(strict_types=1);
namespace App\View\Components;
use Illuminate\View\Component;
use Illuminate\View\View;
class InstallationLayout extends Component
{
/**
* Get the view / contents that represents the component.
*
* @return \Illuminate\Contracts\View\View
*/
public function render()
{
return view('layouts.installation');
}
}