15
common/Auth/Events/UsersDeleted.php
Executable file
15
common/Auth/Events/UsersDeleted.php
Executable file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
namespace Common\Auth\Events;
|
||||
|
||||
use Illuminate\Database\Eloquent\Collection;
|
||||
|
||||
class UsersDeleted
|
||||
{
|
||||
public Collection $users;
|
||||
|
||||
public function __construct(Collection $users)
|
||||
{
|
||||
$this->users = $users;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user