Mercurial > packages > framework
view src/View/Components/GuestLayout.php @ 3:e107504fa22c
New assets related to BS5
| author | luka |
|---|---|
| date | Mon, 23 Jun 2025 20:20:31 -0400 |
| parents | 56d9c64d64aa |
| children |
line wrap: on
line source
<?php namespace Wizard\Framework\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'); } }
