1
0
mirror of https://github.com/LinkStackOrg/LinkStack.git synced 2025-03-21 22:10:38 +01:00
2021-04-16 03:30:00 +04:30

19 lines
312 B
PHP
Executable File

<?php
namespace App\View\Components;
use Illuminate\View\Component;
class GuestLayout extends Component
{
/**
* Get the view / contents that represents the component.
*
* @return \Illuminate\View\View
*/
public function render()
{
return view('layouts.guest');
}
}