comparison src/View/Components/GuestLayout.php @ 1:56d9c64d64aa

Setting up the base, still have plenty of work to be done here.
author luka
date Mon, 09 Jun 2025 23:07:17 -0400
parents
children
comparison
equal deleted inserted replaced
0:07e7262a8cce 1:56d9c64d64aa
1 <?php
2
3 namespace Wizard\Framework\View\Components;
4
5 use Illuminate\View\Component;
6 use Illuminate\View\View;
7
8 class GuestLayout extends Component
9 {
10 /**
11 * Get the view / contents that represents the component.
12 */
13 public function render(): View
14 {
15 return view('layouts.guest');
16 }
17 }