nasirkhan
nasirkhan

Reputation: 10573

Use Laravel-filemanager without editor

I am planning to use the Laravel-filemanager laravel-filemanager in my project. In the documentation it is described to integrate with the CKEditor. But I want to use this file manager separately for a input field.

Upvotes: 2

Views: 4164

Answers (3)

Samir Rustamov
Samir Rustamov

Reputation: 91

Easy

  • Code Editor
  • File operation(copy,rename,upload,cut,delete,move)
  • zip
  • unzip
  • artisan terminal
  • dark/light theme

GitHub: https://github.com/srustamov/laravel-file-manager

Upvotes: 0

Akash khan
Akash khan

Reputation: 979

It is really easy with Laravel Simple File Manager.

GitHub: https://github.com/haruncpi/laravel-simple-filemanager

Example without editor

<input id="profile">
<button type="button" onclick="filemanager.selectFile('profile')">Pick</button>

You can use it for selecting the batch files/images without using an HTML editor. Read the full documentation of Laravel Simple Filemanager

Upvotes: 0

nasirkhan
nasirkhan

Reputation: 10573

Found the library which i was searching for. UniSharp maintain a package https://github.com/UniSharp/laravel-filemanager which is a fork of tsawler/laravel-filemanager. Do not use the original package developed by tsawler, i does not maintain the package any more and not responsible enough.

Upvotes: 2

Related Questions