create command laravel sample parameter
// 1
protected $signature = 'add:itemstocat {keyword} {category_id}';
// 2
public function handle()
{
if ($this->confirm('This will run the command code continue?')) {
// Do something here.
$keyword = $this->argument('keyword');
$category_id = $this->argument('category_id');
// Do something here.
}