$path = 'public/path/to/file/filename.doc';
$storage = Storage::cloud();
$file = $storage->get($path);
return response()->download($file, 'your_file.doc');
is_file() expects parameter 1 to be a valid path, string given
return Response::download($file);
, тож ене работает.