laravel-learn-bbs/app/Models/Topic.php
2018-01-01 14:51:46 +08:00

20 lines
392 B
PHP

<?php
namespace App\Models;
class Topic extends Model
{
protected $fillable = ['"title', 'body', 'user_id', 'category_id', 'reply_count', 'view_count', 'last_reply_user_id', 'order', 'excerpt', 'slug'];
public function user()
{
return $this->belongsTo(User::class);
}
public function category()
{
return $this->belongsTo(Category::class);
}
}