Laravel Command Parameter Opsional

protected $signature = 'order:check {--silent=y}'

  
  
public function handle()
{
$silent = $this->option('silent');
if ($this->confirm('This will run the command code continue?') || $silent) {
Excited Elephant