acitjazz/uploadendpoint is a Laravel package for :package_description.
It currently has 0 GitHub stars and 50 downloads on Packagist (latest version v1.0.2).
Install it with composer require acitjazz/uploadendpoint.
Discover more Laravel packages by acitjazz
or browse all Laravel packages to compare alternatives.
Last updated
Via Composer
$ composer require acitjazz/uploadendpoint
Change Cache driver to array/redis
CACHE_DRIVER=array
Change Cache driver to array/redis
CACHE_DRIVER=array
Publish configuration with:
php artisan vendor:publish --tag=acitjazz-media-migrations
php artisan vendor:publish --tag=acitjazz-upload-config
php artisan vendor:publish --tag=acitjazz-vue-component
migration:
php artisan migrate
Example usage component:
npm install
npm i filepond-plugin-image-preview --save
npm i filepond-plugin-file-validate-type --save
npm i filepond-plugin-image-exif-orientation --save
<template>
<div id="component">
<acit-jazz-upload
title="New Title"
folder="bucketname"
name="banners"
value="[]"
>
</acit-jazz-upload>
</div>
</template>
<script>
// Import the Component
import AcitJazzUpload from '@/Components/AcitJazzUpload.vue';
export default {
components: {
AcitJazzUpload,
},
};
</script>
Property List:
| Property Name | Value | Description| |---|---|---| | title | String | Image Title | name | String | Name of input | folder | String | Folder/Bucket Name | filetype | Array | ['image/*'] | value | Json String | JSON.stringify Array of Object Media | placeholder | String | String or html | settings | Object | see https://pqina.nl/filepond/docs/api/instance/properties/ for more property
https://pqina.nl/filepond/docs/api/
MIT. Please see the license file for more information.