ok

Mini Shell

Direktori : /home2/selectio/public_html/fms-worksuite/app/Events/
Upload File :
Current File : /home2/selectio/public_html/fms-worksuite/app/Events/TestPusherEvent.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 TestPusherEvent implements ShouldBroadcast
{
    use Dispatchable, InteractsWithSockets, SerializesModels;


    /**
     * Get the channels the event should broadcast on.
     *
     * @return \Illuminate\Broadcasting\Channel|array
     */

    public function broadcastOn()
    {
        return ['test-pusher-channel'];
    }

    public function broadcastAs()
    {
        return 'test-pusher-message';
    }

}

Zerion Mini Shell 1.0