'boolean']; public function questions(): BelongsToMany { return $this->belongsToMany(Question::class, 'paper_questions') ->withPivot(['score', 'sort']) ->withTimestamps() ->orderByPivot('sort'); } }