diff --git a/app/Models/Core/Comment.php b/app/Models/Core/Comment.php index d41226fb..a4046ab1 100644 --- a/app/Models/Core/Comment.php +++ b/app/Models/Core/Comment.php @@ -10,11 +10,7 @@ class Comment extends Model { use HasComments; - protected $fillable = [ - 'comment', - 'user_id', - 'is_approved' - ]; + protected $guarded = []; protected $casts = [ 'is_approved' => 'boolean'