annotate app/View/Components/GuestLayout.php @ 2:90296614b7e2
default tip
Adding in the base for the clients table
| author |
luka |
| date |
Thu, 28 Aug 2025 20:55:40 -0400 |
| parents |
9d7dcd54c677 |
| 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 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 }
|