How To Install And Use CKEditor In Laravel?
In this post how to use laravel install CKEditor example. if you have a question about how to install CKEditor in laravel 7, then I will give a simple example with solution. Here you will learn how to use CKEditor in laravel. I would like to share with you how to install and use CKEditor in laravel.
Sometimes we need to use a rich textbox in our laravel project. I will suggest using CKEditor, CKEditor is wide range use and very popular. you can easily to use CKEditor without using any library here.
CKEditor provides to use HTML Element for text content formatting. CKEditor provides listing, image upload, link, font style, bold, italic, etc. so I will give you a simple example of how to use laravel install CKEditor. will show you how to add and use CKEditor in laravel project.
You can get bellow easy preview:
Use blade file code using CDN js file library:
<html> <head> <title>How to Install And Use CKEditor In Laravel? - Php Coding Stuff</title> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"> </head> <body> <div class="container"> <div class="row"> <div class="col-md-8 offset-2 mt-5"> <div class="card"> <div class="card-header bg-success"> <h6 class="text-white">How to Install And Use CKEditor In Laravel? - Php Coding Stuff</h6> </div> <div class="card-body"> <form method="post" action="" enctype="multipart/form-data"> <div class="form-group"> <label>Name</label> <input type="text" name="name" class="form-control" placeholder="Name"/> </div> <div class="form-group"> <label>Email</label> <input type="email" name="email" class="form-control" placeholder="Email"/> </div> <div class="form-group"> <label><strong>Description :</strong></label> <textarea class="form-control" id="editor1" name="description"></textarea> </div> <div class="form-group text-center"> <button type="submit" class="btn btn-success btn-sm">Save</button> </div> </form> </div> </div> </div> </div> </div> </body> <script src="https://code.jquery.com/jquery-3.5.1.js" crossorigin="anonymous"></script> <script src="https://cdn.ckeditor.com/4.14.1/standard/ckeditor.js"></script> <script type="text/javascript"> CKEDITOR.replace( 'editor1' ); </script> </html>
after store content of rich textbox then you can display as bellow this code:
{!! $post->description !!}
Now you can check your own.
I hope it can help you...
Thanks, I finally managed to insert CKEditor into Laravel. It will be great if you write an article on how to insert it not only into the Blade template, but also into the Vue.