Собственно вот поведение
use yii\base\Behavior;
class ExportBehavior extends Behavior
{
public $attributes;
public function export(){
return $this->attributes;
}
}
вот так подключаю
public function behaviors() {
return [
'export'=>[
'class'=>ExportBehavior::class,
'attributes'=>$this->attributes,
]
];
}
получаю такой массив
array (size=10)
'id' => null
'firstname' => null
'lastname' => null
'middlename' => null
'phone' => null
'state' => null
'date' => null
'comment' => null
'created_at' => null
'updated_at' => null
хотелось бы что бы все атрибуты были заполнены данными конкретной модели. Что я делаю не так ?