Rich text boxes

IgnitedCMS ships with its own simple rich text editor (leveraging Quilljs.) This will allow your backend users basic functionality such as styling their own text, adding ordered or unordered lists, links and so on. We've deliberately removed the option to add images here as we encourage the use of the file upload field instead for this.


The code syntax to retrieve this in the view is as follows:-

{!! $fieldHandle !!}

Please note, this field can store a lot of data as it uses MySql's text datatype, but try not to store too much information here.

Please note we need to disable blade escaping to properly print the rich text data. Use with care!