laravel BelongsTo relationship with different databases not working

后端 未结 9 948
無奈伤痛
無奈伤痛 2020-12-06 00:25

I\'ve seen in several places to \"stay away\" from this, but alas - this is how my DB is built:

class Album extends Eloquent {

   // default connection

            


        
9条回答
  •  心在旅途
    2020-12-06 00:37

    Solution for laravel v5.7 and above

    class Album extends Eloquent {
    
       // default connection
    
       public function genre() {
           return $this->setConnection('Resources')->belongsTo('genre');
       }
    ...
    }
    
    

提交回复
热议问题