'timestamp', 'updated_at' => 'timestamp', 'end_at' => 'timestamp', ]; protected $fillable = ['uid', 'complaint_id', 'type', 'end_at', 'state', 'account_type', 'account']; public function user() { return $this->belongsTo(UserModel::class, 'uid', 'uid') ->select( 'nickname', 'headimgurl', 'sex', 'sxo', 'height', 'age', 'home', 'address', 'school', 'qq', 'weixin', 'pair_min_age', 'pair_max_age', 'wxkf' ); } }