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