CKEditor Package
=====================
p.s. Instead of using this package, I recommend just follow [the official CKEditor installation instructions with package managers](http://docs.ckeditor.com/#!/guide/dev_package_managers)
## Installation
### Set up package
```
composer require unisharp/laravel-ckeditor
```
### Add ServiceProvider
Edit config/app.php, add the following file to `Application Service Providers` section.
```
Unisharp\Ckeditor\ServiceProvider::class,
```
### Publish the resources
```
php artisan vendor:publish --tag=ckeditor
```
## Usage
Default way (initiate by name or id) :
```javascript
```
Or if you want to initiate by jQuery selector :
```javascript
```
## File Uploader Integration
Instead of using KCFinder, we recommend [laravel-filemanager](https://github.com/UniSharp/laravel-filemanager) for the file uploader integration for better laravel user access control and specific per user folders.