first commit

This commit is contained in:
2025-11-26 06:42:02 +00:00
commit 1697d453f5
261 changed files with 243084 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
namespace App\View\Components;
use Illuminate\View\Component;
class GuestLayout extends Component
{
/**
* Get the view / contents that represents the component.
*
* @return \Illuminate\View\View
*/
public function render()
{
return view('layouts.guest');
}
}