I am trying to upload a file using laravel Storage i.e
$request->file('input_field_name')->store('directory_name');
but it is saving the file in specified directory with random string name.
Now I want to save the uploaded file with custom name i.e current timestamp concatenate with actual file name. Is there any fastest and simplest way to achive this functionality.