midium/laravel-ckeditor
最新稳定版本:4.5.6
Composer 安装命令:
composer require midium/laravel-ckeditor
包简介
JavaScript WYSIWYG web text editor (for Laravel 5).
README 文档
README
Installation
Set up package
composer require midium/laravel-ckeditor:dev-master
Add ServiceProvider
Edit config/app.php, add the following file to Application Service Providers section.
Midium\Ckeditor\ServiceProvider::class,
Publish the package's config and assets
php artisan vendor:publish --tag=ckedit
Usage
Default way (initiate by name or id) :
<script src="/vendor/midium/laravel-ckeditor/ckeditor.js"></script> <script> CKEDITOR.replace( 'article-ckeditor' ); </script>
Or if you want to initiate by jQuery selector :
<script src="/vendor/midium/laravel-ckeditor/adapters/jquery.js"></script> <script src="/vendor/midium/laravel-ckeditor/ckeditor.js"></script> <script> $('textarea').ckeditor(); // $('.textarea').ckeditor(); // if class is prefered. </script>
File Uplader Integration
Instead of using KCFinder, we recommend laravel-filemanager for the file uploader integration for better laravel user access control and specific per user folders.
统计信息
- 总下载量: 992
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 1
- 点击次数: 2
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: GPL-2.0
- 更新时间: 2016-02-01