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