*/ use HasFactory; protected $fillable = [ 'vue_component_name', ]; public function resumes(): BelongsToMany { return $this->belongsToMany(Resume::class, 'resume_resume_component') ->withPivot('order', 'data') ->withTimestamps(); } }