PATH:
home
/
lab2454c
/
vaultchip.com
/
vendor
/
botble
/
platform
/
base
/
src
/
Commands
<?php namespace Botble\Base\Commands; use Illuminate\Console\Command; use Illuminate\Console\ConfirmableTrait; class InstallCommand extends Command { use ConfirmableTrait; /** * The console command signature. * * @var string */ protected $signature = 'cms:install'; /** * The console command description. * * @var string */ protected $description = 'Install CMS'; /** * Execute the console command. */ public function handle() { $this->info('Starting installation...'); $this->call('migrate:fresh'); if ($this->confirmToProceed('Do you want to add a new super user?', true)) { $this->call('cms:user:create'); } $this->info('Activating all plugins...'); $this->call('cms:plugin:activate:all'); if ($this->confirmToProceed('Do you want to install sample data?', true)) { $this->call('db:seed'); } $this->info('Publishing assets...'); $this->call('cms:publish:assets'); $this->info('Publishing lang...'); $this->call('vendor:publish', ['--tag' => 'cms-lang']); $this->info('Install CMS successfully!'); } }
[-] ClearLogCommand.php
[edit]
[+]
..
[-] InstallCommand.php
[edit]
[-] PublishAssetsCommand.php
[edit]