for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TopviewDigital\TranslationHelper\Console;
use Illuminate\Console\Command;
class TranslationCommand extends Command
{
/**
* The console command name.
*
* @var string
*/
protected $signature = 'trans-helper:trans';
* The console command description.
protected $description = 'Translation existing terms after sweep';
* Install directory.
protected $directory = '';
* Execute the console command.
* @return void
public function handle()
translate();
}