Is there any way to process/overwrite the certain object variable when its retrived?
For instance:
I have a model Product which has a variable price
After I preform get() I'd like to return $product->price with string "$product->price" . '€' (or $ if its in dollars)
Which is the best option to do that?
I dont want to call process_price() on each Product instance to return price with the currency symbol.