🛠️ Use camel case for meetup names in ExtractLogos command output filenames

This commit is contained in:
HolgerHatGarKeineNode
2025-12-05 23:02:10 +01:00
parent 1adbec3519
commit 60634146fe

View File

@@ -36,7 +36,7 @@ class ExtractLogos extends Command
if ($logo) {
if (file_exists($logo->getPath())) {
Storage::disk('public')
->put('00_logos/'.$meetup->name.'.'.$logo->extension, file_get_contents($logo->getPath()));
->put('00_logos/'.str($meetup->name)->camel().'.'.$logo->extension, file_get_contents($logo->getPath()));
}
}
}