Ei kuvausta
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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. }