You've already forked Atomcms-edit
22 lines
357 B
PHP
Executable File
22 lines
357 B
PHP
Executable File
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Illuminate\Contracts\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class GuestLayout extends Component
|
|
{
|
|
/**
|
|
* Get the view / contents that represents the component.
|
|
*
|
|
* @return View
|
|
*/
|
|
public function render()
|
|
{
|
|
return view('layouts.guest');
|
|
}
|
|
}
|