if($this->confirm('You want to seeding your database?')){
Artisan::call('db:seed');
$this->info('Seeding successfully done!');
}
}
DB::unprepared('USE `'.$database.'`');
Artisan::call('migrate');// Artisan migration
$this->info('Migration successfully done!');
Artisan::call('db:seed');// Artisan seed
$this->info('Seeding successfully done!');
// if ($this->confirm('You want to migrate tables?')) { //uncomment the code if you want to populate mandatory question to user for migration and seed.