]> git.localhorst.tv Git - alttp.git/blob - app/View/Components/GuestLayout.php
add discord auth
[alttp.git] / app / View / Components / GuestLayout.php
1 <?php
2
3 namespace App\View\Components;
4
5 use Illuminate\View\Component;
6
7 class GuestLayout extends Component
8 {
9     /**
10      * Get the view / contents that represents the component.
11      *
12      * @return \Illuminate\View\View
13      */
14     public function render()
15     {
16         return view('layouts.guest');
17     }
18 }