How To Install TinyMCE Editor In Laravel

In this example i will give you example of tinymce editor, Tinymce editor is rich-text opensource editor, It has the ability to convert HTML textarea fields or other HTML elements to editor instances.

Tinymce provides many features like PowerPaste, Spell Checker Pro, Image Upload, Accessibility Checker, Link Checker, Format Painter, Premium Skins & Icons and many more.

I have added code below for tinymce example.

<html>
<title>How to install TinyMCE editor in laravel - websolutionstuff.com</title>
<head>
  <script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/5/tinymce.min.js" referrerpolicy="origin"></script>

</head>
<body>
    <h1 style="text-align: center;">How to install TinyMCE editor in laravel - websolutionstuff.com</h1>
  <textarea id="texteditor">websolutionstuff.com</textarea>
</body>
</html>
<script>
tinymce.init({
    selector: '#texteditor',
    height:350,
});
</script>

Read More : How To Add Ckeditor In Laravel