mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
14 lines
198 B
PHP
14 lines
198 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Frontend;
|
|
|
|
use Livewire\Component;
|
|
|
|
class Welcome extends Component
|
|
{
|
|
public function render()
|
|
{
|
|
return view('livewire.frontend.welcome');
|
|
}
|
|
}
|