mirror of
				https://github.com/brunofontes/shareit.git
				synced 2025-10-28 08:51:06 -03: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';
 | |
|     }
 | |
| }
 |