You've already forked Atomcms-edit
22 lines
388 B
PHP
Executable File
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');
|
|
}
|
|
}
|