/**
  * Show a list with all available currencies
  *
  * @return void
  */
 protected function showCurrenciesList()
 {
     $this->table(['Id', 'Code', 'Name'], $this->allCurrencies->toArray(), 'compact');
 }
 /**
  * Show a list with all available languages
  *
  * @return void
  */
 protected function showLanguagesList()
 {
     $this->table(['Id', 'Code', 'Default', 'Name'], $this->allLanguages->toArray(), 'compact');
 }