Eén regel dispatcht en rendert. Een route antwoordt direct met view() of apply(); location() is er voor een sync-request dat de URL moet canonicaliseren.
prop question = 'Which stack wins?'
route GET poll => view($this->question, 'Phlo Poll')
// Compiles to readable PHP:
class poll extends obj {
public $question = 'Which stack wins?';
public static function GETpoll(){
return view(phlo('poll')->question, 'Phlo Poll');
}
}

