annotate stubs/default/app/View/Components/AppLayout.php @ 2:ac199a7a8931
default tip
Changes to the views and only defualt option is available
| author |
luka |
| date |
Tue, 19 Aug 2025 20:32:36 -0400 |
| parents |
90e38de8f2ba |
| children |
|
| rev |
line source |
|
0
|
1 <?php
|
|
|
2
|
|
|
3 namespace App\View\Components;
|
|
|
4
|
|
|
5 use Illuminate\View\Component;
|
|
|
6 use Illuminate\View\View;
|
|
|
7
|
|
|
8 class AppLayout extends Component
|
|
|
9 {
|
|
|
10 /**
|
|
|
11 * Get the view / contents that represents the component.
|
|
|
12 */
|
|
|
13 public function render(): View
|
|
|
14 {
|
|
|
15 return view('layouts.app');
|
|
|
16 }
|
|
|
17 }
|