Level 20
Check out this thread:
To save a single file to another disk, just specify the disk (you could probably use something like Storage::files($directory) to loop through a whole directory and save the files to another disk as well):
$some_file = Storage::get('image.jpg');
Storage::disk('some-other-disk')->put('image.jpg', $some_file);
3 likes