'bool', 'public' => 'bool', ]; protected $fillable = [ 'name', 'avatar', 'bio', 'enabled', 'public', ]; public function posts() { return $this->hasMany(Post::class); } }