mirror of
https://github.com/brunofontes/shareit.git
synced 2024-11-23 20:10:52 +00:00
51 lines
957 B
PHP
51 lines
957 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use \App\Item;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Broadcasting\PrivateChannel;
|
|
use Illuminate\Contracts\Broadcasting\ShouldBroadcast;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class ReturnItem
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
|
|
/**
|
|
* Item
|
|
*
|
|
* @var Item
|
|
*/
|
|
public $item;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @param Item $item The returned item.
|
|
*
|
|
* @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('touchedItem');
|
|
}
|
|
|
|
public function broadcastAs()
|
|
{
|
|
return 'ReturnItem';
|
|
}
|
|
}
|