mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
16 lines
267 B
PHP
16 lines
267 B
PHP
<?php
|
|
|
|
namespace App\Http\Livewire\Meetup;
|
|
|
|
use App\Models\Country;
|
|
use Livewire\Component;
|
|
|
|
class MeetupEventTable extends Component
|
|
{
|
|
public Country $country;
|
|
public function render()
|
|
{
|
|
return view('livewire.meetup.meetup-event-table');
|
|
}
|
|
}
|