Is there a way in the laravel eloquent integration to have the datasource array contain the relationship data if using a with clause? I have not found a way to do it currently. This is what I have in my setup function:
$this->src("elo")->query(
Project_tasks::with('project')
->whereNotNull('ew_tid')
->orderBy('ew_tid', 'desc')
->whereNotNull('completed')
)
->pipe($this->dataStore("tasks"));