component view:
@if ($rich)
<textarea name="content" class="tinymce">{{ $content }}</textarea>
@else
<textarea name="content">{{ $content }}</textarea>
@endif
I want that, if "$rich" found then show tinymce if not then show plain text. condition working fine. but the problem is first time load tinymce toolbar. after that in reverse the tinymce toolbar not loading.
So i don't understand how to load this.
thanks.