error()->important(); return redirect( 'install/database' )->withInput(); } // Set database details AppConfigurer::saveDbVariables($host, $port, $database, $username, $password); // Try to increase the maximum execution time set_time_limit( 300 ); // 5 minutes // Create tables Artisan::call( 'migrate', [ '--force' => true ] ); // Create Roles Artisan::call( 'db:seed', [ '--class' => 'Database\Seeds\Roles', '--force' => true ] ); return redirect( 'install/settings' ); } }