| 1234567891011121314151617181920 |
- <?php
- namespace App\Models;
- class UserInfoModel extends BaseModel
- {
- protected $table = 'users_info';
- public $timestamps = false;
- protected $primaryKey="user_id";
- protected $fillable = ['user_id', 'nickname','avatar','birthday','height','weight','work','info'];
- protected $appends = ['age'];
- //年龄
- public function getAgeAttribute(){
- return birthday($this->attributes['birthday']);
- }
- }
|