mirror of
https://github.com/Einundzwanzig-Podcast/einundzwanzig-portal.git
synced 2025-12-11 06:46:47 +00:00
17 lines
180 B
PHP
17 lines
180 B
PHP
<?php
|
|
|
|
namespace App\Livewire;
|
|
|
|
use Livewire\Component;
|
|
use WireUi\Traits\Actions;
|
|
|
|
class LaravelEcho extends Component
|
|
{
|
|
use Actions;
|
|
|
|
protected $listeners = [
|
|
|
|
];
|
|
|
|
}
|