staffmanager/app/Events/UserBannedEvent.php

37 lines
705 B
PHP
Raw Normal View History

<?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;
use App\User;
use App\Ban;
class UserBannedEvent
{
use Dispatchable, InteractsWithSockets, SerializesModels;
public $user;
public $ban;
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(User $user, Ban $ban)
{
$this->user = $user;
$this->ban = $ban;
}
}