How to ask for input and loop it until user inputs in command line using lumen ?
by the default I can create a custom command in the app/Console/Commands
directory
here's my current code
<?php
namespace App\Console\Commands;
use Illuminate\Console\Command;
use \Exception;
class AskmeCommand extends Command
{
protected $signature = "askme";
protected $description = "Ask Me";
public function __construct() {
parent::__construct();
}
public function handle()
{
$this->question("ask me question?");
try {
$this->info("Hello World");
} catch (Exception $e) {
$this->error($e->getMessage());
}
}
}
if I run this code via php artisan askme
all it does is print the "ask me question"
how should the user type the input/question in the command line?
then how to loop the question again ?
I think it should give you an error as I don't see
Command::question()
at all but there isask()
https://laravel.com/docs/8.x/artisan#prompting-for-input
https://laravel.com/api/5.8/Illuminate/Console/Command.html#method_ask