Storage::fake('cloud');
$fileName = 'large-image.jpg';
$uuid = Uuid::uuid4()->toString();
$newFilePath = "{$uuid}/{$fileName}";
$storage = Storage::disk('cloud');
$storage->put($newFilePath, file_get_contents($filePath));
$storage->assertExists($newFilePath);
Looking in the folders storage/framework/testing/disks/cloud the folder is created but there's no file in the folder and thus the assertExists fails. Any idea what causes this? The folder seemingly has the right permissions/owner.
