PHP code example of mdhesari / laravel-flysystem-cloudinary
1. Go to this page and download the library: Download mdhesari/laravel-flysystem-cloudinary library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
mdhesari / laravel-flysystem-cloudinary example snippets
use Illuminate\Support\Facades\Storage;
Storage::disk('cloudinary')->put('cat.jpg', $contents);
use Illuminate\Support\Facades\Storage;
Storage::disk('cloudinary')->put('cat', $contents);
use Illuminate\Http\Request;
use Laravel\Nova\Fields\Image;
Image::make('Image')
->disk('cloudinary')
->storeAs(function (Request $request) {
return sha1($request->image->getClientOriginalName());
}),
use Illuminate\Support\Facades\Storage;
Storage::disk('cloudinary')->put('meow', $contents);
return [
/*
|--------------------------------------------------------------------------
| Cloudinary Upload Preset
|--------------------------------------------------------------------------
|
| Upload preset allow you to define the default behavior for all your
| assets. They have precedence over client-side upload parameters.
| You can define your upload preset in your cloudinary settings.
|
*/
'upload_preset' => env('CLOUDINARY_UPLOAD_PRESET'),
/*
|--------------------------------------------------------------------------
| Cloudinary Folder
|--------------------------------------------------------------------------
|
| An optional folder name where the uploaded asset will be stored. The
| public ID contains the full path of the uploaded asset, including
| the folder name. This is very useful to prefix assets directly.
|
*/
'folder' => env('CLOUDINARY_FOLDER'),
/*
|--------------------------------------------------------------------------
| Cloudinary Secure URL
|--------------------------------------------------------------------------
|
| This value determines that the asset delivery is forced to use HTTPS
| URLs. If disabled all your assets will be delivered as HTTP URLs.
| Please do not use unsecure URLs in your production application.
|
*/
'secure_url' => (bool) env('CLOUDINARY_SECURE_URL', true),
];