ibox/uploader

File uploader for laravel framework.
45
Install
composer require ibox/uploader
Latest Version:1.0.0
PHP:>=5.4.0
License:MIT
Last Updated:Feb 23, 2016
Links: GitHub  ·  Packagist
Maintainer: juanem1

Laravel File Uploader

This package take advantage of the Laravel Filesytem library.

Installation

Begin by installing this package through Composer. Edit your project's composer.json file to require ibox/uploader

"require": {
    "ibox/uploader": "~1.0"
}

Next, update Composer from the terminal:

composer update

Configure

In config/filesystems.php update default key. This library will upload all files to the default option. If you are uploading locally also update the root key to define were the files will be stored.

Usage

Example:

In your HTML:

<form action="/images" enctype="multipart/form-data" method="post">
	<input type="file" name="image" multiple="multiple" required />
    <input type="submit" value="Upload" />
</form>

In your controller:

<?php

use Ibox\Uploader\Uploader;
class ImagesController extends Controller 
{

	public function store(Request $request, Uploader $uploader)
    {
        $path = 'some/path';
        $imageNames = $uploader->upload($request->file(), $path);
    }

}

NOTE: The secong parameter ($path), will only work for cloud storage, check config section.

Next features

Enable queue to faster responses.

License

This package is open source software licensed under the MIT license

Related Packages

roboticsexpert/laravel-stapler

Easy file upload management for the Laravel Framework.

1,126 1
vinelab/cdn

Content Delivery Network (CDN) Package for Laravel

246,240 217
aws/aws-sdk-php-laravel

A simple Laravel 9/10/11/12/13 service provider for including the AWS SDK for PH...

40,701,246 1,716
codesleeve/laravel-stapler

Easy file upload management for the Laravel Framework.

415,748 556
ivan1911/aws-sdk-php-laravel

A simple Laravel 5 service provider for including the AWS SDK for PHP with fixed...

429 0