Last time I saw this error was when Storage facade was not imported correctly at the top of the file.
Make sure that works.
I'm using Lumen to make an API and I need to read/write files within the Storage folder. I've set up special "disks" for this purpose. I have a results folder linked to the "results" disk etc (within the config). If I do a simple \Storage::disk('results')->get('filename.csv') it gives me the Driver [] is not supported error.
In bootstrap/app.php I have:
$app->configure('filesystems');
$app->register(Illuminate\Filesystem\FilesystemServiceProvider::class);
What else do I need to do to make sure I can use get/put or readStream/writeStream?
Please or to participate in this conversation.