Laravel – Storage::put creates file always with hash name instead of what is provided
I have a simple disk configuration like 'uploads' => [ 'driver' => 'local', 'root' => storage_path('app/uploads'), 'throw' => false, ], When I call $full_path = Storage::disk("uploads")->put("my_image.jpg", $file); It outputs something like "my_image.jpg/b5JsD4bs3BtBaja2YcI6o8wGdw8llxDvec4qsbgi.jpg" I do understand that it is much safer…