<?php namespace Bixo\Account\Events; use Illuminate\Broadcasting\InteractsWithSockets; use Illuminate\Foundation\Events\Dispatchable; use Illuminate\Queue\SerializesModels; use Bixo\Account\Models\Coa; class CoaWorkflow { use Dispatchable, InteractsWithSockets, SerializesModels; /** * Create a new event instance. */ public function __construct( public string $transition, public Coa $coa, public array $request = [], public string $when = 'after' ) { } }