Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
1234567891011121314151617 |
- <?php
-
- namespace App\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');
- }
- }
|