如何对我的表应用联接

时间:2017-02-06 07:41:28

标签: php laravel-5.2

**当用户进入国家和课程大师时,如果大学提供硕士课程而不是从学院表中选择国家和学院/大学名称,则从学位表中选择其课程(硕士)学院_id是学位表中的外键:

学院模式

protected $table = 'institutes';

protected $fillable = [
    'user_id','email', 'contact', 'country','about','name','city'

];


public function degree()
{
    return $this->hasMany('App\Degree','institute_id');

}

学位模型

  protected $table = 'degrees';

protected $fillable = [
    'institute_id','description', 'course', 'fees','session','education_req'

];

**链接网站了解问题在本网站中更清楚如果您输入国家美国为硕士比它显示所有提供硕士学位的美国的监督** link

0 个答案:

没有答案