I\'d like to use this bundle: laravel-ckeditor but I have troubles in nesting it in my view (all previous installation steps I\'ve done successfully). How can i connect Form::te
steps are:
install the editor first via composer by running the command:
composer require unisharp/laravel-ckeditor
Add this to ServiceProvider in config/app.php to the providers array:
'providers' => [
Unisharp\Ckeditor\ServiceProvider::class,
back at the command line again, Publish the resources:
php artisan vendor:publish --tag=ckeditor
Now to embed it into a textarea bind them with an id
for these steps they had their own github repository
NOTE: if you are using Laravel Collictive to add the textarea and bind the id to it use this:
{{Form::textarea('desc', '', ['id' => 'your_id'])}}
AND then display the nice formatted content like this:
{!!$post->desc!!}
where $post->desc is the returned stored value from the database