trikey/laravel-file-uploader

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

File upload backend

1.2.1 2018-08-09 08:04 UTC

This package is auto-updated.

Last update: 2024-09-07 00:52:52 UTC


README

Installation

composer require trikey/laravel-file-uploader

If you are on laravel 5.5+, then you are ready to go.

Those who are on older versions of laravel , add this to providers in config/app.php:

\Trikey\FileUploader\FileUploaderServiceProvider::class,

This package also adds table to keep files in, so run:

php artisan migrate

You can set these params in env:

FILE_UPLOADER_DISK to specify filesystem disk which will be used to store files, defaults to local

FILE_UPLOADER_PATH is a path on a disk where files will be stores, defaults to uploads