laravel-learn-bbs/app/Models/Reply.php
2018-01-15 23:24:11 +08:00

20 lines
274 B
PHP

<?php
namespace App\Models;
class Reply extends Model
{
protected $fillable = ['content'];
public function topic()
{
return $this->belongsTo(Topic::class);
}
public function user()
{
return $this->belongsTo(User::class);
}
}