Package Statistics | |
---|---|
Total Downloads: | 4,601 |
Monthly Downloads: | 7 |
Daily Downloads: | 0 |
Total Stars: | 0 |
Total Watchers: | 2 |
Total Forks: | 1 |
Total Open Issues: | 0 |
composer require rofilde/laravel-ckeditor
php artisan vendor:publish --tag=ckeditor
Edit config/app.php, add the following file to Application Service Providers
section.
Rofilde\Ckeditor\ServiceProvider::class,
Default way (initiate by name or id) :
<script src="/rofil-ckeditor/laravel-ckeditor/ckeditor.js"></script>
<script>
CKEDITOR.replace( 'article-ckeditor' );
</script>
Or if you want to initiate by jQuery selector :
<script src="/rofil-ckeditor/laravel-ckeditor/ckeditor.js"></script>
<script src="/rofil-ckeditor/laravel-ckeditor/adapters/jquery.js"></script>
<script>
$('textarea').ckeditor();
// $('.textarea').ckeditor(); // if class is prefered.
</script>
Instead of using KCFinder, we recommend laravel-filemanager for the file uploader integration for better laravel user access control and specific per user folders.