/home/techb158/immovalet.com/platform/plugins/ecommerce/src/Models
Edit: /home/techb158/immovalet.com/platform/plugins/ecommerce/src/Models/OrderProduct.php (1300B)
'json',
];
/**
* @return BelongsTo
*/
public function product()
{
return $this->belongsTo(Product::class)->withDefault();
}
/**
* @return BelongsTo
*/
public function order()
{
return $this->belongsTo(Order::class)->withDefault();
}
/**
* @return string
*/
public function getAmountFormatAttribute()
{
return format_price($this->price);
}
/**
* @return string
*/
public function getTotalFormatAttribute()
{
return format_price($this->price * $this->qty);
}
}