Download the PHP package jeroennoten/laravel-ckeditor without Composer
On this page you can find all versions of the php package jeroennoten/laravel-ckeditor. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download jeroennoten/laravel-ckeditor
More information about jeroennoten/laravel-ckeditor
Files in jeroennoten/laravel-ckeditor
Informations about the package laravel-ckeditor
Easy CKEditor integration with Laravel 5
This package provides an easy way to set up CKEditor with Laravel 5.
I think CKEditor is the best free WYSIWYG editors available.
This package makes it super easy to use the editor with Laravel 5.
It provides a custom blade directive @ckeditor('textareaId')
to quickly integrate it in your forms.
- Installation
- Updating
- Usage
- Configuration
Installation
-
Require the package using composer:
-
Add the service provider to the
providers
inconfig/app.php
: - Publish the public assets:
Updating
-
To update this package, first update the composer package:
- Then, publish the public assets with the
--force
flag to overwrite existing files
Usage
The package provides a custom blade directive @ckeditor('textareaId')
that transforms a <textarea>
into a CkEditor instance.
Give your <textarea>
an id
attribute and add the blade directive at the bottom of your page, with the identifier of the <textarea>
.
Example:
Configuration
If you need to configure the CkEditor instance, you can do that by passing a second argument with all options into the blade directive. Refer to the CkEditor config documentation to discover all possible options.
Example:
All versions of laravel-ckeditor with dependencies
jeroennoten/laravel-package-helper Version ^3.1
league/flysystem Version ^1.0.8
intervention/image Version ^2.3