whoami7 - Manager
:
/
home
/
dataiclx
/
vielorbe.com
/
wp-content
/
plugins
/
surecart
/
app
/
src
/
Models
/
Traits
/
Upload File:
files >> //home/dataiclx/vielorbe.com/wp-content/plugins/surecart/app/src/Models/Traits/HasPurchase.php
<?php namespace SureCart\Models\Traits; use SureCart\Models\Purchase; /** * If the model has an attached customer. */ trait HasPurchase { /** * Set the purchase attribute * * @param string $value Product properties. * @return void */ public function setPurchaseAttribute( $value ) { $this->setRelation( 'purchase', $value, Purchase::class ); } /** * Get the purchase id attribute * * @return string */ public function getPurchaseIdAttribute() { return $this->getRelationId( 'purchase' ); } }
Copyright ©2021 || Defacer Indonesia