Mercurial > packages > framework
view src/View/Components/AppLayout.php @ 5:f282c6ef1671
better support for server side tables
| author | luka |
|---|---|
| date | Tue, 19 Aug 2025 22:15:16 -0400 |
| parents | 56d9c64d64aa |
| children |
line wrap: on
line source
<?php namespace Wizard\Framework\View\Components; use Illuminate\View\Component; use Illuminate\View\View; class AppLayout extends Component { /** * Get the view / contents that represents the component. */ public function render(): View { return view('layouts.app'); } }
