芝麻web文件管理V1.00
编辑当前文件:/home/shaabmuni/public_html/app/Section.php
belongsTo('App\WebmasterSection', 'webmaster_id'); } //Relation of father section public function fatherSection() { return $this->belongsTo('App\Section', 'father_id'); } //Relation of father sections public function fatherSections() { return $this->hasMany('App\Section', 'father_id')->orderby('row_no', 'asc'); } //Relation to Topics public function topics() { return $this->hasMany('App\Topic')->orderby('row_no', 'asc'); } //Relation of TopicCategory public function selectedCategories() { return $this->hasMany('App\TopicCategory', 'section_id')->groupby('topic_id'); } }