mirror of
https://github.com/Bubka/2FAuth.git
synced 2024-11-22 16:23:18 +01:00
29 lines
509 B
PHP
29 lines
509 B
PHP
<?php
|
|
|
|
namespace App\Events;
|
|
|
|
use App\Models\Group;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class GroupDeleted
|
|
{
|
|
use Dispatchable, InteractsWithSockets, SerializesModels;
|
|
|
|
/**
|
|
* @var \App\Models\Group
|
|
*/
|
|
public $group;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(Group $group)
|
|
{
|
|
$this->group = $group;
|
|
}
|
|
}
|