'int', 'child_payment_option_id' => 'int' ]; protected $fillable = [ 'parent_payment_option_id', 'child_payment_option_id' ]; public function payment_option() { return $this->belongsTo(PaymentOption::class, 'parent_payment_option_id'); } }