I am sure it isn't that hard to solve my issue, but I couldn't find anything helpfull so far
I want to set a relation to a specific ID and display more than just 1 information from that related table.
[b][u]Example[/u]:[/b]
[i][b]games[/b][/i]
id
home
away
...
[i][b]scorer[/b][/i]
game_id
name
...
This gets me just the home team
$this->grocery_crud->set_relation('game_id','games','home');
Now i want to display the away team too, but how?
Thanks in advance,
R2D2