diff --git a/app/Console/Commands/BagistoInstall.php b/app/Console/Commands/BagistoInstall.php index f83046ae9..f17a2f2b4 100644 --- a/app/Console/Commands/BagistoInstall.php +++ b/app/Console/Commands/BagistoInstall.php @@ -136,18 +136,26 @@ class BagistoInstall extends Command \Artisan::call('config:cache'); + $this->info('Running migrations...'); + \Artisan::call('migrate'); - $this->info('Migrations complete'); + $this->info('Migration completed.'); + + $this->info('Running seeders...'); \Artisan::call('db:seed', ['--force' => true]); - $this->info('Seeding complete'); + $this->info('Seeders finished.'); \Artisan::call('storage:link'); + $this->info('Storage link created...'); + \Artisan::call('vendor:publish', [0]); + $this->info('All provider tags are published...'); + $this->info('Installation completed.'); $this->info('Please write us: SUPPORT@BAGISTO.COM');