芝麻web文件管理V1.00
编辑当前文件:/home/royashxg/bit-alphas-ltd.com/user/project/app/Models/User.php
hasMany(BalanceTransfer::class); } public function invests(){ return $this->hasMany(Invest::class); } public function deposits(){ return $this->hasMany(Deposit::class); } public function withdraws() { return $this->hasMany(Withdraw::class); } public function notifications() { return $this->hasMany('App\Models\Notification'); } public function transactions() { return $this->hasMany('App\Models\Transaction','user_id'); } }