confirm('This command will truncate(empty) your tables. Should we continue?')) { if (empty($this->option('table'))) { $this->info('Truncating all tables'); FixturesFacade::down(); } else { foreach ($this->option('table') as $option) { if (\in_array($option, self::$allowedTables, false)) { $this->info('Truncating '.$option.' table'); FixturesFacade::down($option); } } } } else { $this->info('Command execution stopped'); } } }