'datetime', ]; public function category() { return $this->belongsTo(ForumCategory::class, 'category_id'); } public function posts() { return $this->hasMany(ForumPost::class, 'thread_id'); } }