The Laravel documentation states that th FlySystem config is located in config/filesystems.php
. Is there a way I can change where this file is loaded or can i state when using a disk to load from a different config?
So instead of
Storage::disk('local')->put('file.txt', 'Contents');
Something like
Storage::disk('myconfig::local')->put('file.txt', 'Contents');