Tips & Tricks
Overcome bottlenecks, and learn about the Workflow features through real code examples
Too many nodes?
class MyWorkflow extends Workflow
{
...
protected function nodes(): array
{
return [
...$this->classificationProcess(),
...$this->analysis(),
...$this->postProcessing(),
];
}
/**
* Initial classification process
*/
protected function classificationProcess(): array
{
return [
// Nodes here...
];
}
}Example Projects
AIForm - Conversational Data Collection
Deep Research Agent
Architecture
Travel Planner Agent
Architecture
Nodes
Laravel Travel Agent

How to use this project
Last updated