<?php namespace Eform\Instruction\Events; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; use Eform\Instruction\Models\InstructionCategory; class InstructionCategoryAction { use Dispatchable, InteractsWithSockets, SerializesModels; /** * Create a new event instance. */ public function __construct( public string $action, public InstructionCategory $instruction_category, public array $request = [], public string $when = 'after' ) {} }