??
You're inside public_html, but wp-admin or wp-content was not found.
Savvy
W
olf -
MANAGER
Edit File: Section.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Section extends Model { use HasFactory; //Relation to webmasterSections public function webmasterSection() { return $this->belongsTo('App\Models\WebmasterSection', 'webmaster_id'); } //Relation of father section public function fatherSection() { return $this->belongsTo('App\Models\Section', 'father_id'); } //Relation of father sections public function fatherSections() { return $this->hasMany('App\Models\Section', 'father_id')->orderby('row_no', 'asc'); } //Relation to Topics public function topics() { return $this->hasMany('App\Models\Topic')->orderby('row_no', 'asc'); } //Relation of TopicCategory public function selectedCategories() { return $this->hasMany('App\Models\TopicCategory', 'section_id')->groupby('topic_id'); } }