PHP code example of ofilin / yii2-quill

1. Go to this page and download the library: Download ofilin/yii2-quill library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

ofilin / yii2-quill example snippets


<?= $form->field($model, 'text_msg')->label(false)->widget(\ofilin\quill\Quill::class, [
    'theme' => 'snow',
    'placeholder' => 'Text',
    'toolbarOptions' => [
        ["bold", "italic", "code", "link", "emoji"],
    ],
])