I am using Laravel 5.2 and using UniSharp/laravel-ckeditor package to implement ckeditor in my project.Everything seems to work fine.But when I send data of ckeditor input field,it's not inserting in database.The data of other input field working fine.When i use normal text-area instead of ckeditor it's also working fine.
The Form In my view:
{{Form::open(array('url'=>'gettopics'))}}
<input type="text" name="title" class="form-control"/>
**<input type="textarea" name="detail" id="article-ckeditor">**
{{Form::close()}}
<script>
CKEDITOR.replace( 'article-ckeditor' );
</script>
The Route:
Route::post('gettopics','TopicsController@gettopics');
The Controller:
public function gettopics(Request $request){
$topic=new Topic;
$topic->title=$request->Input('title');
$topic->detail=$request->Input('detail');
$topic->save();
}