How to Install and Use CKEditor in Laravel?
https://www.itsolutionstuff.com/post/how-to-install-and-use-ckeditor-in-laravelexample.html
Last updated
https://www.itsolutionstuff.com/post/how-to-install-and-use-ckeditor-in-laravelexample.html
Last updated
<html><head> <title>How to Install And Use CKEditor In Laravel? - ItSolutionStuff.com</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-info"> <h6 class="text-white">How to Install And Use CKEditor In Laravel? - ItSolutionStuff.com</h6> </div> <div class="card-body"> <form method="post" action="" enctype="multipart/form-data"> @csrf <div class="form-group"> <label>Name</label> <input type="text" name="name" class="form-control"/> </div> <div class="form-group"> <label><strong>Description :</strong></label> <textarea class="ckeditor form-control" 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="//cdn.ckeditor.com/4.14.0/standard/ckeditor.js"></script><script type="text/javascript"> $(document).ready(function() { $('.ckeditor').ckeditor(); });</script> </html>{!! $post->description !!}