@bot.message_handler(commands=["command"]) # В commands может быть несколько разных команд
def answer(message):
command = message.split(maxsplit=1)[1] # В переменной будет всё,что идёт после /command
Validator
$messages = array(
'required' => 'Поле :attribute должно быть заполнено.',
);
$validator = Validator::make($input, $rules, $messages);
app/lang/xx/validation.php
'custom' => array(
'email' => array(
'required' => 'Нам нужно знать ваш e-mail адрес!',
),
),