'datetime', ]; public function post(): BelongsTo { return $this->belongsTo(ForumPost::class, 'post_id'); } public function thread(): BelongsTo { return $this->belongsTo(ForumThread::class, 'thread_id'); } public function reporter(): BelongsTo { return $this->belongsTo(User::class, 'reporter_user_id'); } }