*/ protected $fillable = [ 'post_id', 'label', 'position', 'content', ]; /** * Get the post associated with the post section. */ public function post(): BelongsTo { return $this->belongsTo(Post::class); } }