public function construct() { $this->builder->makeTitle('Greeting'); $this->builder->makeString('From morning to noon'); $this->builder->makeItems(['Good Morning', 'Hello']); $this->builder->makeString('At night'); $this->builder->makeItems(['Good evening', 'Good night', 'Good bye']); $this->builder->close(); }