rezadaulay / jq-upload
There is no license information available for the latest version (1.1) of this package.
Jquery Upload Laravel Package
1.1
2016-01-27 02:26 UTC
Requires
- php: >=5.4.0
This package is not auto-updated.
Last update: 2024-11-15 10:19:53 UTC
README
Laravel Package For Jquery File Upload
Instalation
composer require rezadaulay/jq-upload:1.1
Then in your config/app.php
add
'Rezadaulay\JqUpload\JqUploadServiceProvider::class'
in the providers
array and
'JqUpload' => Rezadaulay\JqUpload\Facades\JqUpload::class
to the aliases
array.
Usage
It's easy
JqUpload::init($config);
Example
JqUpload::init([
'access_control_allow_origin' => false
]);