Merge remote-tracking branch 'origin/sockets'

# Conflicts:
#	composer.lock
#	public/mix-manifest.json
This commit is contained in:
Čarodej
2022-03-10 07:14:08 +01:00
15 changed files with 1896 additions and 315 deletions
@@ -0,0 +1,18 @@
<?php
namespace Domain\Notifications\Events;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
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');
}
}