public function postFind()
 {
     $numFound = $this->manager->findTranslations();
     return back()->with('findCounter', $numFound);
 }
 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $counter = $this->manager->findTranslations();
     $this->info('Done importing, processed ' . $counter . ' items!');
 }