for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace A17\Twill\Commands;
use Illuminate\Console\Command;
class Dev extends Command
{
/**
* The name and signature of the console command.
*
* @var string
*/
protected $signature = 'twill:dev {--noInstall}';
* The console command description.
protected $description = "Hot reload Twill assets with custom Vue components/blocks";
/*
* Executes the console command.
* @return mixed
public function handle()
$this->call('twill:build', [
'--hot' => true,
'--noInstall' => $this->option('noInstall'),
]);
}