[
[0] => [
'id' => 1 (таблица file)
'type_id' => 1 (таблица file)
'usage_id' => 1 (таблица file_usage)
],
[1] => [
'id' => 1 (таблица file)
'type_id' => 1 (таблица file)
'usage_id' => 1 (таблица file_usage)
],
]
public function fields()
{
$fields = [
'id',
'user_id',
'type_id',
'title',
'short_title',
'description',
'email',
'status',
'updated_by',
'created_at',
'updated_at'
];
return $fields;
}
public function extraFields()
{
return [
'product_type' => function($model) {
return $model->type;
},
'files' => function($model) {
return $model->files; // и вот сюда надо файлы засунуть
}
];
}