mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
20 lines
344 B
PHP
20 lines
344 B
PHP
<?php
|
|
|
|
namespace App\View\Components;
|
|
|
|
use Illuminate\View\View;
|
|
use Illuminate\View\Component;
|
|
|
|
class GuestLayout extends Component
|
|
{
|
|
/**
|
|
* Get the view / contents that represents the component.
|
|
*
|
|
* @return \Illuminate\View\View
|
|
*/
|
|
public function render(): View
|
|
{
|
|
return view('layouts.guest');
|
|
}
|
|
}
|