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