File: //home/armgroup/libs/app/Events/DiscountSaved.php
<?php
namespace App\Events;
use App\Models\Discount;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class DiscountSaved
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $discount;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(Discount $discount)
{
$this->discount = $discount;
}
/**
* Get the channels the event should broadcast on.
*
* @return \Illuminate\Broadcasting\Channel|array
*/
public function broadcastOn()
{
return new PrivateChannel('channel-name');
}
}