mirror of
				https://github.com/brunofontes/shareit.git
				synced 2025-11-04 11:31:03 -03:00 
			
		
		
		
	Including some use for classes; REfactoring the HomeController, to make it cleaner and avoid repeating code.
		
			
				
	
	
		
			41 lines
		
	
	
		
			911 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			911 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?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.
 | 
						|
     *
 | 
						|
     * @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('channel-name');
 | 
						|
    }
 | 
						|
}
 |