D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
forge
/
developers.ghanempharmacy.com
/
app
/
Events
/
Filename :
AddFundToWalletEvent.php
back
Copy
<?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 AddFundToWalletEvent { use Dispatchable, InteractsWithSockets, SerializesModels; /** * Create a new event instance. * * @return void */ public function __construct(public readonly string $email, public object|array $data) { } /** * Get the channels the event should broadcast on. * * @return Channel|PrivateChannel|array */ public function broadcastOn(): Channel|PrivateChannel|array { return new PrivateChannel('channel-name'); } }