UserInfoModel.php 576 B

123456789101112131415161718192021
  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','weixin', 'nickname','avatar','birthday','height','weight','work','info','figure','feeling','education','income','drink','smoke','hobby','hobby_self','photo','video'];
  9. protected $appends = ['age'];
  10. //年龄
  11. public function getAgeAttribute(){
  12. return !empty($this->attributes['birthday'])?birthday($this->attributes['birthday']):0;
  13. }
  14. }