From 4d52ebbcf3c90a71204a4bc504f19975988a58c5 Mon Sep 17 00:00:00 2001 From: Daniel Karbach Date: Fri, 28 Aug 2026 22:18:38 +0200 Subject: [PATCH] new beer league schedule --- app/Console/Commands/SyncBeerLeague.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Console/Commands/SyncBeerLeague.php b/app/Console/Commands/SyncBeerLeague.php index 9cf8fb9..76be2dc 100644 --- a/app/Console/Commands/SyncBeerLeague.php +++ b/app/Console/Commands/SyncBeerLeague.php @@ -44,7 +44,7 @@ class SyncBeerLeague extends Command { return Command::SUCCESS; } - $html = Http::get('https://docs.google.com/spreadsheets/d/e/2PACX-1vQoetX31OD-O1FGP7x0hfWjxQpwx7W_a2OWhi3hb4B1whPHe_Z0KmsnyLFbL2bVZs4cWN6WLXJcSQPt/pubhtml/sheet?headers=false&gid=1221273995')->body(); + $html = Http::get('https://docs.google.com/spreadsheets/d/e/2PACX-1vT5bitosbJGwR-lKkPgv2cvzamXuXKqm49CwrXRjz9pfKoBUIbATX1nezsNrD6xYh7hiK-CuFaF5xDe/pubhtml/sheet?headers=false&gid=1221273995')->body(); $dom = new \DOMDocument(); $dom->loadHTML($html); $rows = $dom->getElementsByTagName('tr'); -- 2.47.3