opnform/app/Events/Models/FormCreated.php

25 lines
444 B
PHP
Raw Normal View History

2022-09-20 19:59:52 +00:00
<?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
{
2024-02-23 10:54:12 +00:00
use Dispatchable;
use InteractsWithSockets;
use SerializesModels;
2022-09-20 19:59:52 +00:00
/**
* Create a new event instance.
*
* @return void
*/
public function __construct(public Form $form)
2024-02-23 10:54:12 +00:00
{
}
2022-09-20 19:59:52 +00:00
}