Is it possible to retreive the created_at and updated_at timestamps with the results call? At the moment I have a relationship between 2 models and am retrieving them like so: ``` $project = $projectsDb->get($id); $prices = $pricesDb->where('project_id','=',$id)->results(); $project->prices = $prices; ``` But doing it like this means that $project->prices does not have the timestamps.
Is it possible to retreive the created_at and updated_at timestamps with the results call?
At the moment I have a relationship between 2 models and am retrieving them like so:
But doing it like this means that $project->prices does not have the timestamps.