Files
einundzwanzig-portal/app/Http/Livewire/LaravelEcho.php
Benjamin Takats 3cb11c2de2 plebchat added
2023-01-19 17:34:28 +01:00

29 lines
732 B
PHP

<?php
namespace App\Http\Livewire;
use Livewire\Component;
use WireUi\Traits\Actions;
class LaravelEcho extends Component
{
use Actions;
protected $listeners = ['echo:plebchannel,.App\Events\PlebLoggedInEvent' => 'plebLoggedIn'];
public function plebLoggedIn($data)
{
$this->notification()
->confirm([
'img' => $data['img'],
'title' => 'Pleb alert!',
'description' => $data['name'].' logged in',
'icon' => 'bell',
'acceptLabel' => '',
'rejectLabel' => '',
'iconColor' => 'primary',
'timeout' => 60000,
]);
}
}