Нет описания
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

GuestLayout.php 300B

1234567891011121314151617
  1. <?php
  2. namespace App\View\Components;
  3. use Illuminate\View\Component;
  4. use Illuminate\View\View;
  5. class GuestLayout extends Component
  6. {
  7. /**
  8. * Get the view / contents that represents the component.
  9. */
  10. public function render(): View
  11. {
  12. return view('layouts.guest');
  13. }
  14. }