belongsTo(User::class); } public function tarifa(){ return $this ->belongsTo(Tarifas::class); } public function promocion(){ return $this ->belongsTo(Promociones::class); } public function cliente(){ return $this ->belongsTo(User::class); } public function cuentas(){ return $this ->belongsToMany(Cuentas::class,'historial_cuentas','historial_id','cuenta_id'); } public function cuentas_obsoletas(){ return $this ->belongsToMany(Cuentas::class,'logs','historial_id','cuenta_id'); } }