Laravel コマンドで、スクロールが必要な 1 つの長いリストではなく、52 個のオプションを複数の列に表示する方法を探しています。
これは可能ですか?
これは私がこれまでに持っているコードです:
do {
$i++;
$col_name[$i] = $this->ask('Column name?');
if ($col_name[$i] != null) {
$col_type[$i] = $this->choice('Column type?', [
"0" => 'bigIncrements',
"1" => 'bigInteger',
"2" => 'binary',
"3" => 'boolean',
"4" => 'char',
"5" => 'date',
"6" => 'dateTime',
"7" => 'dateTimeTz',
"8" => 'decimal',
...
"51" => 'uuid',
"52" => 'year'
], 'string');
}
} while ($col_name[$i] != null);