A Laravel Nova uploadcare multiple images field.
panchania83/laravel-nova-3-uploadcare-multiple-images is a Laravel package for a laravel nova uploadcare multiple images field..
It currently has 0 GitHub stars and 1 downloads on Packagist.
Install it with composer require panchania83/laravel-nova-3-uploadcare-multiple-images.
Discover more Laravel packages by panchania83
or browse all Laravel packages to compare alternatives.
Last updated
An image field using the UploadCare API.
This is a vue-wrapper around uploadcare-vue (https://github.com/tipeio/uploadcare-vue).
You can upload an image through drag-and-drop, url or google drive. The image is stored on Uploadcare and saved as a url in the model.

composer require panchania83/uploadcare-image
To publish the config file to config/uploadcare.php, run:
php artisan vendor:publish --provider="panchania83\UploadcareImage\FieldServiceProvider"
Add Uploadcare Public Key to .env:
UPLOADCARE_PUBLIC_KEY=yourpublickey
Register the field in the Nova resource:
use panchania83\UploadcareImage\UploadcareImage;
Use the field:
UploadcareImage::make('Image')
This project is licensed under the MIT License - see the LICENSE.md file for details