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