![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mcoil.corals.io/app/Events/ |
<?php namespace App\Events; use App\Shop\Orders\Order; use Illuminate\Broadcasting\Channel; use Illuminate\Queue\SerializesModels; use Illuminate\Broadcasting\PrivateChannel; use Illuminate\Broadcasting\PresenceChannel; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Contracts\Broadcasting\ShouldBroadcast; class OrderCreateEvent { use Dispatchable, InteractsWithSockets, SerializesModels; public $order; /** * Create a new event instance. * * @param Order $order */ public function __construct(Order $order) { $this->order = $order; } /** * Get the channels the event should broadcast on. * * @return Channel|array * @codeCoverageIgnore */ public function broadcastOn() { return new PrivateChannel('channel-name'); } }