I have a form which stores News.
Here I am using Multiselect and I want to save all the selected option in the table as say Users,staff,cinemahall as a string.
My controller function to store values is
public function store(Request $request)
{
$input=$request->all();
General_news::create($input);
return redirect()->back();
}
This function store the all submitted fields but for multiselect it stores only last option i.e cinemahall
When form is submitted all selected options are displayed but it's not saving in database table properly.
help me to solve this issue.

