| Current Path : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Events/ |
| Current File : /home/users/unlimited/www/ultimate-ai.codeskitter.site/app/Events/PaystackWebhookEvent.php |
<?php
namespace App\Events;
use Illuminate\Broadcasting\Channel;
use Illuminate\Broadcasting\InteractsWithSockets;
use Illuminate\Broadcasting\PrivateChannel;
use Illuminate\Foundation\Events\Dispatchable;
use Illuminate\Queue\SerializesModels;
class PaystackWebhookEvent
{
use Dispatchable;
use InteractsWithSockets;
use SerializesModels;
/**
* Create a new event instance.
*/
public $payload;
/**
* Create a new event instance.
*/
public function __construct($payload)
{
$this->payload = $payload;
}
/**
* Get the channels the event should broadcast on.
*
* @return array<int, \Illuminate\Broadcasting\Channel>
*/
public function broadcastOn(): array
{
return [
new PrivateChannel(1),
];
// return [
// new PrivateChannel('channel-name'),
// ];
}
}