If i do the following with file example.jpg the storage file is getting a random name. How can i give it the example.jpg name?
Storage::disk('local')->put('test', $request->file('file') )
This works, but how can i specify a disk?
$file = request()->file('files');
$file->storeAs('test',$request->file('files')->getClientOriginalName());
