UserInfoModel.php 433 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models;
  3. class UserInfoModel extends BaseModel
  4. {
  5. protected $table = 'users_info';
  6. public $timestamps = false;
  7. protected $primaryKey="user_id";
  8. protected $fillable = ['user_id', 'nickname','avatar','birthday','height','weight','work','info'];
  9. protected $appends = ['age'];
  10. //年龄
  11. public function getAgeAttribute(){
  12. return birthday($this->attributes['birthday']);
  13. }
  14. }