# TinyMCE

TinyMCE is the an advanced WYSIWYG HTML editor designed to simplify website content creation.

https://www.tiny.cloud (opens new window)

TinyMCE

# Component

A Laravel Blade Component is available for TinyMCE, see the component documentation

# Usage

To use TinyMCE you can use the loading view boilerplate::load.tinymce (opens new window)

You can find an example of use here : tinymce.blade.php (opens new window)

@section('content')
    <textarea id="tiny">
        <h1>TinyMCE demo</h1>
    </textarea>
@endsection

@include('boilerplate::load.tinymce')

@push('js')
    <script>
        $('#tiny').tinymce({});
    </script>
@endpush