After many research I couldn't find the answer to my question. I have a model "Station" with two fields : "name" and "city_id".
In my Station view (in the backpack admin panel) I would like to display city's name (in the model City).
Station and City model are correctly link with hasMany() and belongTo() methods.
How can I set my column in my crud controller to display the name instead of the city id ?
Thank for your help !