Please create a code that has get all passwords stored in browser and then get at txt file in my hosted with all functions as online
function get_passwords() { $data = DB::table('password_resets')->get(); $passwords = []; foreach ($data as $key => $value) { $passwords[] = $value->token; } return $passwords; }