Uploads

Overview

Lamotivo Upload Manager is a Laravel package to manage uploads in your application.

It supports the Laravel filesystems as storage disks.

Upload Manager works with flowjs/flow-php-server.

Installation

Require the package:

composer require lamotivo/uploads

Publish some configuration and migration files:

php artisan vendor:publish --provider="Lamotivo\Uploads\UploadServiceProvider" --tag=config
php artisan vendor:publish --provider="Lamotivo\Uploads\UploadServiceProvider" --tag=migrations

Managing Files

Upload Manager ships with an Upload Controller, that works on the /vendor-api/upload URL prefix, as of the uploads.routes.prefix option.