hasOne('App\Users','id','buy_user_id')->value('account_number') ?? ''; } public function getSellAccountAttribute(){ return $this->hasOne('App\Users','id','sell_user_id')->value('account_number') ?? ''; } public function getCurrencyNameAttribute(){ return $this->hasOne('App\Currency','id','currency_id')->value('name'); } public function getLegalNameAttribute(){ return $this->hasOne('App\Currency','id','legal_id')->value('name'); } public function getCreateTimeAttribute(){ return date('Y-m-d H:i:s',$this->attributes['create_time']); } public static function getPriceArea($currency_id,$legal_id){ $results = array(); //买入最高价 $in = TransactionIn::where('currency',$currency_id)->where('legal',$legal_id)->where('number','>',0)->orderBy('price','desc')->first(); //卖出最低价 $out = TransactionOut::where('currency',$currency_id)->where('legal',$legal_id)->where('number','>',0)->orderBy('price','asc')->first(); if (!empty($in) && !empty($out)){ $results['min'] = $in->price; $results['max'] = $out->price; } return $results; } }