LaravelPackages.net
Acme Inc.
Toggle sidebar
ichbin/filament-elfinder

A Filament Package to integrate elFinder 2

16
1
v1.1.0
About ichbin/filament-elfinder

ichbin/filament-elfinder is a Laravel package for a filament package to integrate elfinder 2. It currently has 1 GitHub stars and 16 downloads on Packagist (latest version v1.1.0). Install it with composer require ichbin/filament-elfinder. Discover more Laravel packages by ichbin or browse all Laravel packages to compare alternatives.

Last updated

Laravel filament-elfinder

Latest Version on Packagist Total Downloads

img

Installation

You can install the package via composer:

composer require ichbin/filament-elfinder

To install the plugin run

php artisan filament-elfinder:install

This is the contents of the published config file:

return array(

    // Group the menu item belongs to
    'group' => 'FileManager',

    // Sidebar label
    'label' => 'Files',

    // title

    'title'=> 'File Manager',

    'icon' => 'heroicon-o-document',

    // Slug

    'slug' => '/admin/elfinder',

    /*
    |--------------------------------------------------------------------------
    | Upload dir
    |--------------------------------------------------------------------------
    |
    | The dir where to store the images (relative from public)
    |
    */
    'dir' => ['storage'],

    /*
    |--------------------------------------------------------------------------
    | Filesystem disks (Flysytem)
    |--------------------------------------------------------------------------
    |
    | Define an array of Filesystem disks, which use Flysystem.
    | You can set extra options, example:
    |
    | 'my-disk' => [
    |        'URL' => url('to/disk'),
    |        'alias' => 'Local storage',
    |    ]
    */
    'disks' => [

    ],

    /*
    |--------------------------------------------------------------------------
    | Roots
    |--------------------------------------------------------------------------
    |
    | By default, the roots file is LocalFileSystem, with the above public dir.
    | If you want custom options, you can set your own roots below.
    |
    */

    'roots' => null,

    /*
    |--------------------------------------------------------------------------
    | Options
    |--------------------------------------------------------------------------
    |
    | These options are merged, together with 'roots' and passed to the Connector.
    | See https://github.com/Studio-42/elFinder/wiki/Connector-configuration-options-2.1
    |
    */

    'options' => array(),

    /*
    |--------------------------------------------------------------------------
    | Root Options
    |--------------------------------------------------------------------------
    |
    | These options are merged, together with every root by default.
    | See https://github.com/Studio-42/elFinder/wiki/Connector-configuration-options-2.1#root-options
    |
    */
    'root_options' => array(

    ),

);

Credits

License

The MIT License (MIT). Please see License File for more information.

Comments