dcodegroup/fileman

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

Laravel package for managing files.

3.0.4 2025-02-26 01:34 UTC

This package is auto-updated.

Last update: 2025-03-26 01:53:51 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
npm install @vitejs/plugin-vue
npm install vue
npm install vite-svg-loader
npm install lodash
npm install vite-plugin-laravel-translations
npm install vue-i18n
npm install vue3-click-away

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 following to your providers.php file:

DcodeGroup\Fileman\FilemanServiceProvider::class,

return [
    App\Providers\AppServiceProvider::class,
    \DcodeGroup\Fileman\FileManServiceProvider::class,
];

Add the package routes to your web.php file:

in web.php
\DcodeGroup\Fileman\Routes\Web::get();

in api.php
\DcodeGroup\Fileman\Routes\Api::get();

JS Add the following alias to vite.config.js

resolve: {
  alias: {
      "@fileman": path.resolve(__dirname, "./vendor/dcodegroup/fileman"),

Seem to need this in tailwind.config.js, Update the module exports under content:

content: [
  ...
    "./vendor/dcodegroup/**/*.{blade.php,vue,js,ts}",
  ...
],

in the app.js file or other file where you are registering your vue components add the following:

import { registerFileman } from "@fileman/src/resources/js";
registerFileman(app);

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