lasthourcloud/app/Http/Livewire/Notifications/Test.php
Andras Bacsai 39d37010a3 fixes
2023-06-02 12:34:45 +02:00

20 lines
411 B
PHP

<?php
namespace App\Http\Livewire\Notifications;
use App\Models\Server;
use App\Models\Team;
use App\Notifications\TestNotification;
use Livewire\Component;
use Notification;
class Test extends Component
{
public Team $model;
public function sendTestNotification()
{
Notification::send($this->model, new TestNotification);
$this->emit('saved', 'Test notification sent.');
}
}