mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
16 lines
279 B
PHP
16 lines
279 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Guest;
|
|
|
|
use Livewire\Component;
|
|
|
|
class Welcome extends Component
|
|
{
|
|
public function render()
|
|
{
|
|
return view('livewire.guest.welcome', [
|
|
'cities' => \App\Models\City::all(),
|
|
])->layout('layouts.guest');
|
|
}
|
|
}
|