empari/files

Management Files for Laravel

5.5.4 2017-11-06 19:28 UTC

This package is not auto-updated.

Last update: 2024-04-24 00:13:30 UTC


README

Management Files for Laravel.

Installation

Composer

Execute the following command to get the latest version of the package:

composer require empari/gfiles

Laravel

In your config/app.php add Empari\Files\FilesServiceProvider::class to the end of the providers array:

'providers' => [
    ...
    Empari\Files\FilesServiceProvider::class,
],

Publish Configuration

php artisan vendor:publish --provider "Empari/Files/FilesServiceProvider"

Migrate the new tables

php artisan migrate