mydnic/uploader

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

Installs: 187

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 0

Forks: 0

Open Issues: 0

pkg:composer/mydnic/uploader

0.1.4 2015-11-04 08:19 UTC

This package is auto-updated.

Last update: 2025-09-13 03:39:53 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'));