jrm2k6/cloudder

How to display all media library from cloudinary

Closed this issue · 4 comments

Hi, can you help me how to show entire media library like this from laravel application?

image

so we display all the media, can cloudder do something like that?
Thank you in advance..

You can definitely use this wrapper to fetch the data from cloudinary.
Where do you store the path to the assets?
What have you tried so far?

Sorry I'm new here, I don't see on this documentation to show the media entirely.
I already tried using curl https://<API_KEY>:<API_SECRET>@api.cloudinary.com/v1_1/<CLOUD_NAME>/resources/image but only shown 10 media maximum

I also tried
image
the output
image

it's fixed by adding

$result = (array) Cloudder::resources([
            'max_results' => 30
         ]);

or

$result = Cloudder::resources([
            'max_results' => 30
        ]); 

dd($result['resources']);