Simple File Manager for Laravel

MD HARUN UR RASHID
laravelarticle
Published in
1 min readMay 17, 2020

A file manager or media library is an important part of our website or application. For the Laravel Framework, the Simple Filemanager is a great package for managing application/website files, images easily. It has various features like multi-language support, popular WYSIWYG HTML editor support like TinyMCE, CKEditor, Summernote and more features listed below.

Desktop View ( Simple Laravel Filemanager )

Feature overview of Laravel Simple Filemanager

  • English, বাংলা, हिन्दी, العربية, German, Indonesian, 日本語 language support.
  • Clean & fresh responsive UI with easy installation.
  • Configurable route and middleware.
  • popular WYSIWYG HTML editor support (TinyMce, CKEditor, Summernote)
  • Drag and drop file upload
  • Single/Multiple file upload
  • Single/Batch file selection
  • Image conversion
  • Quick Search feature.
  • File download
  • Event listener
  • and more

Licence

It has two licences. Commercial and open-source. Read the Laravel Simple Filemanger Licence

Simple Installation

  1. Install the package by composer command
composer require haruncpi/laravel-simple-filemanager

2. Run install command

php artisan filemanager:install

3. Add blade directive in the main template file before </head> tag.

@FilemanagerScript
</head>

TinyMCE Integration

<textarea id=”tinymce”><script src=”//cdn.tinymce.com/4/tinymce.min.js”></script><script>
window.onload = function () {
tinymce.init({
selector: ‘#tinymce’,
file_browser_callback: filemanager.tinyMceCallback
});
}
</script>

Still hungry?

learn more by reading the Laravel Simple Filemanager Documentation.

--

--