2018-10-01 00:32:33 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Events;
|
|
|
|
|
|
|
|
use \App\Item;
|
|
|
|
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 ReturnItem
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
public $item;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Create a new event instance.
|
|
|
|
*
|
2018-10-10 03:46:28 +00:00
|
|
|
* @param Item $item The returned item.
|
|
|
|
*
|
2018-10-01 00:32:33 +00:00
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(Item $item)
|
|
|
|
{
|
|
|
|
$this->item = $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the channels the event should broadcast on.
|
|
|
|
*
|
|
|
|
* @return \Illuminate\Broadcasting\Channel|array
|
|
|
|
*/
|
|
|
|
public function broadcastOn()
|
|
|
|
{
|
|
|
|
return new PrivateChannel('channel-name');
|
|
|
|
}
|
|
|
|
}
|