for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by PhpStorm.
* User: arthur
* Date: 30.10.18
* Time: 14:01.
*/
namespace Modules\Telescope\Console;
use Artisan;
use Illuminate\Console\Command;
class PublishTelescopeAssetsCommand extends Command
{
* The console command name.
*
* @var string
protected $signature = 'telescope:publish:assets';
* The console command description.
protected $description = 'Publish Telescope Assets.';
* Execute the console command.
* @return void
public function handle()
Artisan::call('vendor:publish', [
'--tag' => 'telescope-assets',
'--force' => true,
]);
$this->info('Telescope assets published.');
}