I would like to use them in a Conversation, but couldn`t find how to do it.
At the moment im using addButton but its placing each button in a new row.

This is what I have now
Yes they are :P

Passing buttons manually as extra parameters instead of using ->addButtons
Worked.
Oh cool. Do you mind sharing the code?
$keyboard = [
['300 €', '400 €', '450 €'],
['500 €', '600 €', '700 €'],
['800 €', '900 €', '1000 €'],
['1200 €', '1400 €', '2000 €'],
['2500 €', '3000 €', 'any'],
];
$this->ask('How much?',
function (Answer $answer) {
$this->askAdress();
}, ['reply_markup' => json_encode([
'keyboard' => $keyboard,
'one_time_keyboard' => true,
'resize_keyboard' => true
])]
);
Most helpful comment