Barryvdh\TranslationManager\Manager::truncateTranslations PHP Method

truncateTranslations() public method

    public function truncateTranslations()
    {
        Translation::truncate();
    }

Usage Example

 /**
  * Execute the console command.
  *
  * @return void
  */
 public function fire()
 {
     $this->manager->truncateTranslations();
     $this->info("All translations are deleted");
 }