32 lines
662 B
PHP
32 lines
662 B
PHP
<?php
|
|
|
|
namespace App\Events\Dashboard;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
|
|
class PelangganNotify implements ShouldBroadcast
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public $response;
|
|
public $cawangan;
|
|
|
|
public function __construct($response,$cawangan)
|
|
{
|
|
$this->response = $response;
|
|
$this->cawangan = $cawangan;
|
|
}
|
|
|
|
public function broadcastOn()
|
|
{
|
|
return ['pelanggan-notify'];
|
|
}
|
|
|
|
public function broadcastAs()
|
|
{
|
|
return 'trigger-pelanggan';
|
|
}
|
|
} |