🛠️ Ensure meetup names are converted to ASCII before sanitizing in ExtractLogos command

This commit is contained in:
HolgerHatGarKeineNode
2025-12-05 23:27:12 +01:00
parent 22592bbd23
commit d0d19663aa

View File

@@ -36,6 +36,7 @@ class ExtractLogos extends Command
if ($logo) {
if (file_exists($logo->getPath())) {
$safeName = str($meetup->name)
->ascii()
->replaceMatches('/[^a-zA-Z0-9\s\-_]/', '')
->studly();
Storage::disk('public')