Files
nexusphp/app/Models/Topic.php
2022-06-18 13:16:36 +08:00

20 lines
386 B
PHP

<?php
namespace App\Models;
class Topic extends NexusModel
{
protected $fillable = ['userid', 'subject', 'locked', 'forumid', 'firstpost', 'lastpost', 'sticky', 'hlcolor', 'views'];
public function user()
{
return $this->belongsTo(User::class, 'userid');
}
public function forum()
{
return $this->belongsTo(Forum::class. 'forumid');
}
}