I have a column in my database Started_Trading__c. I'm struggling to use an accessor for this field. So far I have tried the following with no luck.
public function getStartedTrading_cAttribute()
public function getStartedTrading__cAttribute()
public function getStarted_Trading__cAttribute()
public function getStarted_Trading_cAttribute()
What would be a valid way to get an accessor working with this type of column name which has 2 consecutive underscores __c.
Unfortunately I have no control over the database column names so ideally i'd like to get this to work.
Thanks