??
You're inside public_html, but wp-admin or wp-content was not found.
Savvy
W
olf -
MANAGER
Edit File: RelatedTopic.php
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class RelatedTopic extends Model { use HasFactory; //Relation to Related Topics one topic public function topic() { return $this->belongsTo('App\Models\Topic', 'topic2_id'); } }