Forked from adityardiansyah/Summernote for Laravel Livewire
Created
April 8, 2022 13:52
-
-
Save parmonov98/939069a64a411392e05fc9ca0bf2831b to your computer and use it in GitHub Desktop.
Setting Summernote for Laravel Livewire
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// HTML | |
<div class="col-md-12"> | |
<div class="form-group" wire:ignore> | |
<label for="desciption">Deskripsi</label> | |
<textarea type="text" input="description" id="summernote" class="form-control summernote">{{ $description }}</textarea> | |
</div> | |
</div> | |
// JAVASCRIPT | |
$('.summernote').summernote({ | |
tabsize: 2, | |
height: 200, | |
toolbar: [ | |
['style', ['style']], | |
['font', ['bold', 'underline', 'clear']], | |
['color', ['color']], | |
['para', ['ul', 'ol', 'paragraph']], | |
['table', ['table']], | |
['insert', ['link', 'picture', 'video']], | |
['view', ['fullscreen', 'codeview', 'help']] | |
], | |
callbacks: { | |
onChange: function(contents, $editable) { | |
@this.set('description', contents); | |
} | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment