Comments.php 315 B

123456789101112131415
  1. <?php
  2. namespace manager\models;
  3. class Comments extends \app\models\base\Comments
  4. {
  5. public function attributeLabels()
  6. {
  7. return [
  8. 'visible'=>"Видимый",
  9. 'text' =>"Комментарий",
  10. 'created_at'=>"Дата комментария"
  11. ];
  12. }
  13. }