forge/app/View/Components/GuestLayout.php

20 lines
326 B
PHP
Raw Normal View History

2024-05-13 18:55:34 -04:00
<?php
2025-01-30 00:23:55 -05:00
declare(strict_types=1);
2024-05-13 18:55:34 -04:00
namespace App\View\Components;
use Illuminate\View\Component;
use Illuminate\View\View;
class GuestLayout extends Component
{
/**
* Get the view / contents that represents the component.
*/
public function render(): View
{
return view('layouts.guest');
}
}