There isn't a problem with using it that way, and some even prefer it. Accessors just make it easy to have a unified way of getting column data, whether it's a real column or a fake one. It also allows you to always change a column when accessed (casting to a date or similar)
Apr 16, 2022
4
Level 13
What is the point of using Accessor?
I saw this tips in twitter :

Why not just return the result and using the traditional method call ? (if we only want to use accessor and not with mutator ) ?
public function formattedStartDate ()
{
return $this->start_date->format(...);
}
What is the problem with using in this way ?
Please or to participate in this conversation.