To get attribute from extraFields() url is like
organizations/6/location?expands=address,city (i have 10 attribute)
But how can i get all these at once from extraFields()
something like this organizations/6/location?expands=true or all
This contoller
public function actionIndex($id) {
$locations= Location::findAll($id);
return new ArrayDataProvider([
'allModels' => $locations,
'pagination' => false,
]);
And this is my Model code
public function fields() {
return [
'id',
'display',
];
}
public function extraFields() {
return [
'address',
'city',
'state',
'country',
'zipcode',
'country_code',
'phone_number',
];
}
I dont really understand your question, but i think you want to do that :
organizations/6/location?expands=true&address=myadresse&city=mycity ....
Can you give us some code to help you ?