This commit is contained in:
Mekan1206
2026-02-19 01:08:52 +05:00
parent bf69d6733b
commit ba537b7868
2 changed files with 6 additions and 5 deletions

View File

@@ -8,11 +8,11 @@ use Illuminate\Support\Str;
class ShortFileNamer extends FileNamer
{
/**
* Keep the original file name exactly as it was uploaded.
* Generate a short random name for the original file.
*/
public function originalFileName(string $fileName): string
{
return pathinfo($fileName, PATHINFO_FILENAME);
return Str::random(10);
}
/**
@@ -20,7 +20,9 @@ class ShortFileNamer extends FileNamer
*/
public function conversionFileName(string $fileName, Conversion $conversion): string
{
return Str::random(12);
$fileName = pathinfo($fileName, PATHINFO_FILENAME);
return "{$fileName}-{$conversion->getName()}";
}
public function responsiveFileName(string $fileName): string