cloudinary-labs/cloudinary-laravel
Laravel integration for Cloudinary: upload, manage, and transform images and videos with an easy Facade/API, configurable storage, and URL generation. Supports signed delivery, eager transformations, and seamless use in apps and queues.
title: Installing Cloudinary Laravel description: Getting started with Cloudinary Laravel. ogImageTitle: Installation head:
import { Tabs, TabItem, Steps } from '@astrojs/starlight/components'; import CodeBlock from '@components/CodeBlock.astro';
Requires PHP 8.2+ and Laravel 11+.
<CodeBlock alwaysExpanded>
```
composer require cloudinary-labs/cloudinary-laravel
```
</CodeBlock>
After you have installed the SDK, you can invoke the install command to set everything up:
<CodeBlock alwaysExpanded>
```
php artisan cloudinary:install
```
</CodeBlock>
Add your Cloudinary credentials to your .env file:
<CodeBlock alwaysExpanded>
```
CLOUDINARY_URL=cloudinary://API_KEY:API_SECRET@CLOUD_NAME
CLOUDINARY_UPLOAD_PRESET=your_upload_preset
CLOUDINARY_NOTIFICATION_URL=
```
</CodeBlock>
:::tip Don't have a Cloudinary account? Sign up for free on cloudinary.com! :::
How can I help you explore Laravel packages today?