Skip to content

XisoDev/laravel-filemanager

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

라라벨 파일매니저

AMUZ CMS 를 위한 전용파일매니저로, README에 모든 설정내용을 기재하지 않습니다.

install note

`composer require xisodev/laravel-filemanager`
`php artisan vendor:publish --tag=lfm_config`
`php artisan vendor:publish --tag=lfm_public`
`php artisan storage:link`

기본 라우트를 프로젝트에 등록하려면 routes/web.php 에 다음 코드를 등록합니다.

```php Route::group(['prefix' => 'laravel-filemanager', 'middleware' => ['web', 'auth']], function () { \XisoDev\LaravelFilemanager\Lfm::routes(); }); ```

모든 설정을 커스텀하려는 경우

아래 명령을 실행하여 App/Handlers/LfmConfigHandler.php 를 복제한 후 편집

`php artisan vendor:publish --tag=lfm_handler`
버전이 업데이트 된 경우

업데이트 전에 반드시 App/Handler/ConfigHandler.php 는 백업하길 권장합니다.

composer update xisodev/laravel-filemanager

php artisan vendor:publish --tag=lfm_view --force
php artisan vendor:publish --tag=lfm_public --force
php artisan vendor:publish --tag=lfm_config --force

php artisan route:clear
php artisan config:clear

About

CKEditor, TinyMCE와 Summernote에 라라벨 파일시스템을 추가할 수 있습니다.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • PHP 75.6%
  • HTML 13.1%
  • JavaScript 8.6%
  • CSS 2.6%
  • Makefile 0.1%