Looking to hire Laravel developers? Try LaraJobs

storage-cloudinary-laravel maintained by carlosocarvalho

Description
Provider for laravel for Cloudinary
Last update
2022/03/24 14:39 (dev-master)
License
Links
Downloads
45 050

Comments
comments powered by Disqus

Storage Laravel Provider

Latest Stable Version Total Downloads Latest Unstable Version License

Install via composer

    
    composer require carlosocarvalho/storage-cloudinary-laravel
    

Configure config/filesystems.php

   
   
   'cloudinary' => [
               'driver' => 'cloudinary',
               'api_key' => env('CLOUDINARY_API_KEY'),
               'api_secret' => env('CLOUDINARY_API_SECRET'),
               'cloud_name' => env('CLOUDINARY_CLOUD_NAME'),
           ],
   

Add the service provider to the providers array in config/app.php

    CarlosOCarvalho\Providers\CloudinaryServiceProvider::class