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