https://github.com/juzaweb/file-manager
Media gallery with CKEditor, TinyMCE and Summernote support. Built on Laravel file system.
https://github.com/juzaweb/file-manager
ckeditor file-manager-for-laravel filemanager-for-laravel laravel laravel-file-manager laravel-file-manager-package laravel-filemanager laravel-package tinymce
Last synced: 4 months ago
JSON representation
Media gallery with CKEditor, TinyMCE and Summernote support. Built on Laravel file system.
- Host: GitHub
- URL: https://github.com/juzaweb/file-manager
- Owner: juzaweb
- Created: 2021-03-25T13:13:01.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2025-05-18T13:24:00.000Z (6 months ago)
- Last Synced: 2025-07-27T06:35:07.144Z (4 months ago)
- Topics: ckeditor, file-manager-for-laravel, filemanager-for-laravel, laravel, laravel-file-manager, laravel-file-manager-package, laravel-filemanager, laravel-package, tinymce
- Language: JavaScript
- Homepage: https://juzaweb.com/
- Size: 2.3 MB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## About
The file manager intended for using Laravel with CKEditor / TinyMCE. File manager in table database, do not browse on the server folder.

### Features
- [x] DB media and media folder
- [x] Chunk upload support
- [x] CKEditor and TinyMCE integration
- [x] Uploading validation
- [x] Cropping and resizing of images
- [x] Add custom support type
- [x] Image optimize after upload
- [x] Multi media select
## Install
- Install package
```
composer require juzaweb/file-manager
```
- Publish the package’s config and assets:
```
php artisan vendor:publish --tag=config
php artisan vendor:publish --tag=assets
```
- Migration
```
php artisan migrate
```
- Create symbolic link:
```
php artisan storage:link
```
- Edit routes/web.php
```
Route::group(['prefix' => 'file-manager', 'middleware' => ['web', 'auth']], function (){
\Juzaweb\FileManager\Media::browser();
});
```
## Usage
Updating...
## Credits
[Laravel File Manager](https://github.com/UniSharp/laravel-filemanager)
## License
The Laravel File Manager package is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).