Hey @kartik,
We have to call Facades in our controller file with this :
use Illuminate\Support\Facades\Storage;
Example
if($request->hasFile(file_name')) {
$file = Storage::putFile('YOUR FOLDER PATH', $request->file('file_name'));
}
Hope this is helpful!!
Thank you!!