Skip to content
Discussion options

You must be logged in to vote

Hey @hagealex

The problem is that you have not configured a disk for cloudinary. Disks can be added at config/filesystems.php.
A cloudinary driver will be required to add a cloudinary disk. This is how the Laravel File Storage system works.

I found two packages to help you with cloudinary Laravel integration that comes with cloudinary filesystem/driver.

Install the one you like, and configure the API keys. Then you can use it like this:

 [
    'name'  => 'image_url',
    'label' => 'Bild/Logo für die Serie',
    'type'  => 'image',
    'disk' => 'cloudinary'
 ],

You can also make c…

Replies: 1 comment 2 replies

Comment options

You must be logged in to vote
2 replies
@hagealex
Comment options

@karandatwani92
Comment options

Answer selected by hagealex
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants