sineld yazdıÜsttekini oluşturan PHP kodunu paylaşır mısın?
Controller;
$cpoll = new Poll;
$cpoll->question = $request->question;
$cpoll->options = $request->options;
$cpoll->thread_id = $request->thread;
$cpoll->user_id = Auth::id();
$cpoll->save();
Model;
protected $casts = [
'options' => 'array',
];
View;
<input type="text" class="form-control m-input" data-role="tagsinput" name="options[]" style="display: block;">
buyrun hocam..