ultimatepos/app/Events/ProductsCreatedOrModified.php

39 lines
927 B
PHP

<?php
namespace App\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PresenceChannel;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class ProductsCreatedOrModified
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $product;
public $action;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct($product, $action)
{
$this->product = $product;
$this->action = $action;
}
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return new PrivateChannel('channel-name');
}
}