Multi Step Workflow
Learn how to handle complex execution flow orchestrating the execution of multiple nodes
Custom Events
php vendor/bin/neuron make:event App\\Neuron\\FirstEventphp .\vendor\bin\neuron make:event App\Neuron\FirstEventnamespace App\Neuron;
class FirstEvent implements Event
{
public function __construct(protected string $firstMsg){}
}
class SecondEvent implements Event
{
public function __construct(protected string $secondMsg){}
}Defining the workflow

InitialNode
NodeOne
NodeTwo
Monitoring & Debugging
Last updated