dcodegroup/fileman

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

Laravel package for managing files.

2.0.4 2023-03-02 07:58 UTC

README

  • Legacy branch is for the pre php 8 and pre laravel 8 applications - maintain 1.4.x on packagist
  • master is for php 8+ and laravel 8 plus. use version 2.0.x on packagist

Installation

Install the package via composer:

composer require dcodegroup/fileman

Publish the migrations:

php artisan vendor:publish --provider="DcodeGroup\Fileman\FilemanServiceProvider" --tag="migrations"

Publish the vendor front-end resources:

php artisan vendor:publish --provider="DcodeGroup\Fileman\FilemanServiceProvider" --tag="styles"

Add the package routes to your web.php file:

\DcodeGroup\Fileman\Routes::get();

Fileman will connect to the applications S3 bucket automatically. You'll need to have fileman index the bucket first before it can be used. To index the S3 bucket run:

php artisan fileman:import