|
| 1 | +<?php |
| 2 | + |
| 3 | +/* |
| 4 | + * This file is part of the Laravel Cloudinary package. |
| 5 | + * |
| 6 | + * For the full copyright and license information, please view the LICENSE |
| 7 | + * file that was distributed with this source code. |
| 8 | + */ |
| 9 | + |
| 10 | +return [ |
| 11 | + |
| 12 | + /* |
| 13 | + |-------------------------------------------------------------------------- |
| 14 | + | Cloudinary Configuration |
| 15 | + |-------------------------------------------------------------------------- |
| 16 | + | |
| 17 | + | An HTTP or HTTPS URL to notify your application (a webhook) when the process of uploads, deletes, and any API |
| 18 | + | that accepts notification_url has completed. |
| 19 | + | |
| 20 | + | |
| 21 | + */ |
| 22 | + 'notification_url' => env('CLOUDINARY_NOTIFICATION_URL'), |
| 23 | + |
| 24 | + /* |
| 25 | + |-------------------------------------------------------------------------- |
| 26 | + | Cloudinary Configuration |
| 27 | + |-------------------------------------------------------------------------- |
| 28 | + | |
| 29 | + | Here you may configure your Cloudinary settings. Cloudinary is a cloud hosted |
| 30 | + | media management service for all file uploads, storage, delivery and transformation needs. |
| 31 | + | |
| 32 | + | |
| 33 | + */ |
| 34 | + 'cloud_url' => env('CLOUDINARY_URL'), |
| 35 | + |
| 36 | + /** |
| 37 | + * Upload Preset From Cloudinary Dashboard |
| 38 | + */ |
| 39 | + 'upload_preset' => env('CLOUDINARY_UPLOAD_PRESET'), |
| 40 | + |
| 41 | + /** |
| 42 | + * Route to get cloud_image_url from Blade Upload Widget |
| 43 | + */ |
| 44 | + 'upload_route' => env('CLOUDINARY_UPLOAD_ROUTE'), |
| 45 | + |
| 46 | + /** |
| 47 | + * Controller action to get cloud_image_url from Blade Upload Widget |
| 48 | + */ |
| 49 | + 'upload_action' => env('CLOUDINARY_UPLOAD_ACTION'), |
| 50 | +]; |
0 commit comments