*/ use HasFactory; protected $fillable = [ 'source_page_id', 'target_page_id', ]; public function sourcePage(): BelongsTo { return $this->belongsTo(Page::class, 'source_page_id'); } public function targetPage(): BelongsTo { return $this->belongsTo(Page::class, 'target_page_id'); } }