added BillingAlertTriggeredNotification

This commit is contained in:
Čarodej
2022-03-16 10:37:55 +01:00
parent 60407f9dce
commit 9a6abbd6e8
4 changed files with 61 additions and 22 deletions

View File

@@ -1,18 +0,0 @@
<?php
namespace Domain\Notifications\Events;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
class TestUpdate implements ShouldBroadcast
{
public string $test = 'I am tru man';
use Dispatchable;
public function broadcastOn(): PrivateChannel
{
return new PrivateChannel('test.6474ef97-472b-43f3-b607-f71df9d33e43');
}
}