laravel-learn-bbs/app/Models/Reply.php

20 lines
274 B
PHP
Raw Normal View History

2018-01-15 15:24:11 +00:00
<?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);
}
}