25 lines
444 B
PHP
25 lines
444 B
PHP
<?php
|
|
|
|
namespace App\Events\Models;
|
|
|
|
use App\Models\Forms\Form;
|
|
use Illuminate\Broadcasting\InteractsWithSockets;
|
|
use Illuminate\Foundation\Events\Dispatchable;
|
|
use Illuminate\Queue\SerializesModels;
|
|
|
|
class FormCreated
|
|
{
|
|
use Dispatchable;
|
|
use InteractsWithSockets;
|
|
use SerializesModels;
|
|
|
|
/**
|
|
* Create a new event instance.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function __construct(public Form $form)
|
|
{
|
|
}
|
|
}
|