mydnic/uploader

There is no license information available for the latest version (0.1.4) of this package.

0.1.4 2015-11-04 08:19 UTC

This package is auto-updated.

Last update: 2024-04-13 00:33:40 UTC


README

Easier upload process for Laravel 5

Installation

composer require mydnic/uploader

In your controllers, add use Mydnic\Uploader\Uploader; at the top

When receiving a file through a form request, upload it with the imported class :

$filename = Uploader::upload(Request::file('image'));