Files
kaunter/app/Events/Dashboard/TebusNotify.php
T
hafifierahman 5351f96d22 utk dashboard
2021-10-27 11:13:20 +08:00

32 lines
640 B
PHP

<?php
namespace App\Events;
use Illuminate\Queue\SerializesModels;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
class TebusNotify 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 ['tebus-notify'];
}
public function broadcastAs()
{
return 'trigger-tebus';
}
}