Laraveldaily\Quickadmin\Commands\QuickAdminInstall::handle PHP Method

handle() public method

Execute the console command.
public handle ( )
    public function handle()
    {
        $this->info('Please note: QuickAdmin requires fresh Laravel installation!');
        $this->info('Starting installation process of QuickAdmin...');
        $this->info('1. Copying initial files');
        $this->copyInitial();
        $this->info('2. Running migration');
        $this->call('migrate');
        $this->createRole();
        $this->info('3. Create first user');
        $this->createUser();
        $this->info('4. Copying master template to resource\\views....');
        $this->copyMasterTemplate();
        $this->info('Installation was successful. Visit your_domain.com/admin to access admin panel');
    }