您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“Laravel5.1框架模型遠層一對多關系的示例分析”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“Laravel5.1框架模型遠層一對多關系的示例分析”這篇文章吧。
public function up() { Schema::create('articles', function (Blueprint $table) { $table->increments('id'); $table->string('title'); $table->text('body'); $table->integer('user_id'); $table->timestamps(); }); }
public function up() { Schema::table('users', function (Blueprint $table) { $table->integer('country_id'); }); } public function down() { Schema::table('users', function (Blueprint $table) { $table->dropColumn('country_id'); }); }
public function up() { Schema::create('countries', function (Blueprint $table) { $table->increments('id'); $table->string('name'); $table->timestamps(); }); }
首先是Country和User的關系:
Country模型:
public function users() { return $this->hasMany(User::class); }
User模型:
public function country() { return $this->belongsTo(Country::class); }
然后是User和Article的關系:
User模型:
public function articles() { return $this->hasMany(Article::class); }
Article模型:
public function user() { return $this->belongsTo(User::class); }
這是今天的主要內容,實現Country可遠層查找到Article:
public function articles() { /** * 建議第一個和第二個參數寫全,第三個第四個參數可省略使用默認(如果默認的沒問題)。 */ return $this->hasManyThrough(Article::class, User::class, 'country_id', 'user_id'); }
以上是“Laravel5.1框架模型遠層一對多關系的示例分析”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。