laravel4-up icon indicating copy to clipboard operation
laravel4-up copied to clipboard

UP is a file uploader with polymorphic relations

Results 4 laravel4-up issues
Sort by recently updated
recently updated
newest added

Fix/Add the possibility of scaling to the ONLY selected sizes, defined in config file. Usage: `UP::upload($article, $input['file'])->resize(array('s', 'm', 'l'))->getMasterResult();`

When I make: ``` php UP::upload($article, $input['file'])->resize(array('s', 'm'))->getMasterResult(); ``` I get all sizes form config file, but i only want this two, what i specified.