databaseManager = $databaseManager; } /** * Migrate and seed the database. * * @return \Illuminate\View\View */ public function database() { $response = $this->databaseManager->migrateAndSeed(); return redirect()->route('LaravelInstaller::final') ->with(['message' => $response]); } }